AngleSharp by AngleSharp

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

 StyleOptions

public sealed class StyleOptions
Transport object for evaluating stylesheets.
using AngleSharp.Dom; namespace AngleSharp.Services.Styling { public sealed class StyleOptions { public IElement Element { get; set; } public bool IsDisabled { get; set; } public bool IsAlternate { get; set; } public IBrowsingContext Context { get; set; } public StyleOptions(IBrowsingContext context) { Context = context; } } }