Table of Contents

Delegate DefaultInputTypeFactory.Creator

Namespace
AngleSharp.Html
Assembly
AngleSharp.dll

Represents a creator delegate for creating input type providers.

public delegate BaseInputType DefaultInputTypeFactory.Creator(IHtmlInputElement input)

Parameters

input IHtmlInputElement

The input to create the provider for.

Returns

BaseInputType

The created input type provider.

Extension Methods

Constructors

Creator(object, nint)

public Creator(object @object, nint method)

Parameters

object object
method nint

Methods

BeginInvoke(IHtmlInputElement, AsyncCallback, object)

public virtual IAsyncResult BeginInvoke(IHtmlInputElement input, AsyncCallback callback, object @object)

Parameters

input IHtmlInputElement
callback AsyncCallback
object object

Returns

IAsyncResult

EndInvoke(IAsyncResult)

public virtual BaseInputType EndInvoke(IAsyncResult result)

Parameters

result IAsyncResult

Returns

BaseInputType

Invoke(IHtmlInputElement)

public virtual BaseInputType Invoke(IHtmlInputElement input)

Parameters

input IHtmlInputElement

Returns

BaseInputType