AngleSharp by AngleSharp

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

 IStyleEngine

public interface IStyleEngine
Defines the API of an available engine for computing the stylesheet.
using AngleSharp.Dom; using AngleSharp.Network; using System.Threading; using System.Threading.Tasks; namespace AngleSharp.Services.Styling { public interface IStyleEngine { string Type { get; } Task<IStyleSheet> ParseStylesheetAsync(IResponse response, StyleOptions options, CancellationToken cancel); } }