AngleSharp by Florian Rappl

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

.NET API 1,176,064 bytes

 ISelector

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