AngleSharp by AngleSharp

<PackageReference Include="AngleSharp" Version="1.0.6-alpha-330" />

.NET API 894,464 bytes

 IStringMap

public interface IStringMap : IEnumerable<KeyValuePair<string, string>>, IEnumerable
The DOMStringMap interface represents a set of name-value pairs.
using AngleSharp.Attributes; using System.Collections; using System.Collections.Generic; using System.Runtime.CompilerServices; namespace AngleSharp.Dom { [System.Runtime.CompilerServices.NullableContext(1)] [DomName("DOMStringMap")] public interface IStringMap : IEnumerable<KeyValuePair<string, string>>, IEnumerable { [System.Runtime.CompilerServices.Nullable(2)] [DomAccessor(Accessors.Getter | Accessors.Setter)] string this[string name] { [return: System.Runtime.CompilerServices.Nullable(2)] get; [param: System.Runtime.CompilerServices.Nullable(2)] set; } [DomAccessor(Accessors.Deleter)] void Remove(string name); } }