AngleSharp by AngleSharp

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

.NET API 1,223,680 bytes

 ICssPropertyFactory

using AngleSharp.Dom.Css; using System.Collections.Generic; namespace AngleSharp.Services { internal interface ICssPropertyFactory { CssProperty Create(string name); CssProperty CreateFont(string name); CssProperty CreateLonghand(string name); CssProperty[] CreateLonghandsFor(string name); CssShorthandProperty CreateShorthand(string name); CssProperty CreateViewport(string name); string[] GetLonghands(string name); IEnumerable<string> GetShorthands(string name); bool IsAnimatable(string name); bool IsLonghand(string name); bool IsShorthand(string name); } }