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