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);
}
}