AngleSharp by AngleSharp

<PackageReference Include="AngleSharp" Version="0.13.0-alpha-733" />

.NET API 816,640 bytes

 IStringList

public interface IStringList : IEnumerable<string>, IEnumerable
Represents a string list.
using AngleSharp.Attributes; using System.Collections; using System.Collections.Generic; namespace AngleSharp.Dom { [DomName("DOMStringList")] public interface IStringList : IEnumerable<string>, IEnumerable { [DomName("item")] [DomAccessor(Accessors.Getter)] string this[int index] { get; } [DomName("length")] int Length { get; } [DomName("contains")] bool Contains(string entry); } }