AngleSharp by AngleSharp

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

 ISelector

public interface ISelector
Represents a CSS selector for matching elements. More information: http://dev.w3.org/csswg/selectors4/
using AngleSharp.Dom; namespace AngleSharp.Css.Dom { public interface ISelector { string Text { get; } Priority Specificity { get; } bool Match(IElement element, IElement scope); void Accept(ISelectorVisitor visitor); } }