AngleSharp by AngleSharp

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

.NET API 829,440 bytes

 IStyleSheetList

Represents a list of stylesheet elements.
using AngleSharp.Attributes; using System.Collections; using System.Collections.Generic; namespace AngleSharp.Dom { [DomName("StyleSheetList")] public interface IStyleSheetList : IEnumerable<IStyleSheet>, IEnumerable { [DomName("item")] [DomAccessor(Accessors.Getter)] IStyleSheet this[int index] { get; } [DomName("length")] int Length { get; } } }