AngleSharp by Florian Rappl

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

.NET API 1,168,384 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) { } protected override object GetDefault(IElement element) { return null; } protected override object Compute(IElement element) { return null; } protected override bool IsValid(ICssValue value) { return true; } } }