Table of Contents

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 string

The name of the attribute.

value string

The value of the attribute.

prefix string

The prefix for the attribute.

insensitive bool

Sets the evaluation mode.

Returns

ISelector
Extension Methods

Constructors

Creator(object, nint)

public Creator(object @object, nint method)

Parameters

object object
method nint

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

name string
value string
prefix string
insensitive bool
callback AsyncCallback
object object

Returns

IAsyncResult

EndInvoke(IAsyncResult)

public virtual ISelector EndInvoke(IAsyncResult result)

Parameters

result IAsyncResult

Returns

ISelector

Invoke(string, string, string?, bool)

public virtual ISelector Invoke(string name, string value, string? prefix, bool insensitive)

Parameters

name string
value string
prefix string
insensitive bool

Returns

ISelector