AngleSharp by AngleSharp

<PackageReference Include="AngleSharp" Version="1.0.6-alpha-325" />

.NET API 894,464 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); } }