AngleSharp by AngleSharp

<PackageReference Include="AngleSharp" Version="1.2.0-beta.448" />

.NET API 957,440 bytes

 IHtmlAllCollection

An HTMLAllCollection is always rooted at document and matching all elements. It represents the tree of elements in a one-dimensional fashion.
using AngleSharp.Attributes; using System.Collections; using System.Collections.Generic; namespace AngleSharp.Dom { [DomName("HTMLAllCollection")] public interface IHtmlAllCollection : IHtmlCollection<IElement>, IEnumerable<IElement>, IEnumerable { } }