AngleSharp by AngleSharp

<PackageReference Include="AngleSharp" Version="0.9.11" />

.NET API 1,230,848 bytes

 ICssFontFaceRule

Represents a @font-face CSS rule.
using AngleSharp.Attributes; using System.Collections; using System.Collections.Generic; namespace AngleSharp.Dom.Css { [DomName("CSSFontFaceRule")] public interface ICssFontFaceRule : ICssRule, ICssNode, IStyleFormattable, ICssProperties, IEnumerable<ICssProperty>, IEnumerable { [DomName("family")] string Family { get; set; } [DomName("src")] string Source { get; set; } [DomName("style")] string Style { get; set; } [DomName("weight")] string Weight { get; set; } [DomName("stretch")] string Stretch { get; set; } [DomName("unicodeRange")] string Range { get; set; } [DomName("variant")] string Variant { get; set; } [DomName("featureSettings")] string Features { get; set; } } }