Interface IAttributeSelectorFactory
- Namespace
- AngleSharp.Css
- Assembly
- AngleSharp.dll
Represents a factory for attribute selectors.
public interface IAttributeSelectorFactory
- Extension Methods
Methods
Create(string, string, string, string?, bool)
Creates a new attribute selector from the given arguments.
ISelector Create(string combinator, string name, string value, string? prefix, bool insensitive)
Parameters
combinator
stringThe used combinator.
name
stringThe name of the attribute.
value
stringThe provided value.
prefix
stringThe prefix, if any.
insensitive
boolShould be evaluated insensitive.
Returns
- ISelector
The created selector, if possible.