AngleSharp by Florian Rappl

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

.NET API 1,171,968 bytes

 CssUnicodeRangeProperty

More information available at: https://developer.mozilla.org/en/docs/Web/CSS/@font-face
using AngleSharp.Css; namespace AngleSharp.Dom.Css { internal sealed class CssUnicodeRangeProperty : CssProperty { public CssUnicodeRangeProperty(CssStyleDeclaration style) : base(PropertyNames.UnicodeRange, style, PropertyFlags.None) { } internal override void Reset() { } protected override bool IsValid(ICssValue value) { return true; } } }