AngleSharp by AngleSharp

<PackageReference Include="AngleSharp" Version="1.0.1-alpha-235" />

.NET API 885,760 bytes

 IStyleSheetList

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