Delegate DefaultAttributeSelectorFactory.Creator
- Namespace
- AngleSharp.Css
- Assembly
- AngleSharp.dll
Represents a creator delegate for creating an attribute selector.
public delegate ISelector DefaultAttributeSelectorFactory.Creator(string name, string value, string? prefix, bool insensitive)
Parameters
name
stringThe name of the attribute.
value
stringThe value of the attribute.
prefix
stringThe prefix for the attribute.
insensitive
boolSets the evaluation mode.
Returns
- Extension Methods
Constructors
Creator(object, nint)
public Creator(object @object, nint method)
Parameters
Methods
BeginInvoke(string, string, string?, bool, AsyncCallback, object)
public virtual IAsyncResult BeginInvoke(string name, string value, string? prefix, bool insensitive, AsyncCallback callback, object @object)
Parameters
Returns
EndInvoke(IAsyncResult)
public virtual ISelector EndInvoke(IAsyncResult result)
Parameters
result
IAsyncResult
Returns
Invoke(string, string, string?, bool)
public virtual ISelector Invoke(string name, string value, string? prefix, bool insensitive)