AngleSharp by AngleSharp

<PackageReference Include="AngleSharp" Version="0.16.1-alpha-110" />

.NET API 879,104 bytes

 IStyleSheet

public interface IStyleSheet : IStyleFormattable
Represent a stylesheet for collecting style information.
using AngleSharp.Attributes; using AngleSharp.Css.Dom; using AngleSharp.Text; using System.Runtime.CompilerServices; namespace AngleSharp.Dom { [System.Runtime.CompilerServices.NullableContext(1)] [DomName("StyleSheet")] public interface IStyleSheet : IStyleFormattable { [DomName("type")] string Type { get; } [DomName("href")] string Href { get; } [DomName("ownerNode")] IElement OwnerNode { get; } [DomName("title")] string Title { get; } [DomName("media")] [DomPutForwards("mediaText")] IMediaList Media { get; } [DomName("disabled")] bool IsDisabled { get; set; } IBrowsingContext Context { get; } TextSource Source { get; } void SetOwner(IElement element); string LocateNamespace(string prefix); } }