AngleSharp by AngleSharp

<PackageReference Include="AngleSharp" Version="1.1.0-alpha-377" />

.NET API 955,904 bytes

 ISelector

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