EventCallback.InvokeAsync Method

Definition

Overloads

InvokeAsync()

Invokes the delegate associated with this binding and dispatches an event notification to the appropriate component.

InvokeAsync(Object)

Invokes the delegate associated with this binding and dispatches an event notification to the appropriate component.

InvokeAsync()

Source:
EventCallback.cs
Source:
EventCallback.cs
Source:
EventCallback.cs
Source:
EventCallback.cs

Invokes the delegate associated with this binding and dispatches an event notification to the appropriate component.

public:
 System::Threading::Tasks::Task ^ InvokeAsync();
public System.Threading.Tasks.Task InvokeAsync ();
member this.InvokeAsync : unit -> System.Threading.Tasks.Task
Public Function InvokeAsync () As Task

Returns

A Task which completes asynchronously once event processing has completed.

Applies to

InvokeAsync(Object)

Source:
EventCallback.cs
Source:
EventCallback.cs
Source:
EventCallback.cs
Source:
EventCallback.cs
Source:
EventCallback.cs
Source:
EventCallback.cs

Invokes the delegate associated with this binding and dispatches an event notification to the appropriate component.

public:
 System::Threading::Tasks::Task ^ InvokeAsync(System::Object ^ arg);
public System.Threading.Tasks.Task InvokeAsync (object arg);
public System.Threading.Tasks.Task InvokeAsync (object? arg);
member this.InvokeAsync : obj -> System.Threading.Tasks.Task
Public Function InvokeAsync (arg As Object) As Task

Parameters

arg
Object

The argument.

Returns

A Task which completes asynchronously once event processing has completed.

Applies to