AngleSharp by AngleSharp

<PackageReference Include="AngleSharp" Version="0.16.0-alpha-86" />

.NET API 879,104 bytes

 INodeList

NodeList objects are collections of nodes.
using AngleSharp.Attributes; using System.Collections; using System.Collections.Generic; using System.Runtime.CompilerServices; namespace AngleSharp.Dom { [DomName("NodeList")] public interface INodeList : IEnumerable<INode>, IEnumerable, IMarkupFormattable { [System.Runtime.CompilerServices.Nullable(1)] [DomName("item")] [DomAccessor(Accessors.Getter)] INode this[int index] { [System.Runtime.CompilerServices.NullableContext(1)] get; } [DomName("length")] int Length { get; } } }