Dispatcher.InvokeAsync Method
.NET Framework 4.5
Executes the specified delegate asynchronously on the thread the Dispatcher is associated with.
This member is overloaded. For complete information about this member, including syntax, usage, and examples, click a name in the overload list.
| Name | Description | |
|---|---|---|
|
InvokeAsync(Action) | Executes the specified Action asynchronously on the thread the Dispatcher is associated with. |
|
InvokeAsync<TResult>(Func<TResult>) | Executes the specified Func<TResult> asynchronously on the thread the Dispatcher is associated with. |
|
InvokeAsync(Action, DispatcherPriority) | Executes the specified Action asynchronously at the specified priority on the thread the Dispatcher is associated with. |
|
InvokeAsync<TResult>(Func<TResult>, DispatcherPriority) | Executes the specified Func<TResult> asynchronously at the specified priority on the thread the Dispatcher is associated with. |
|
InvokeAsync(Action, DispatcherPriority, CancellationToken) | Executes the specified Action asynchronously at the specified priority on the thread the Dispatcher is associated with. |
|
InvokeAsync<TResult>(Func<TResult>, DispatcherPriority, CancellationToken) | Executes the specified Func<TResult> synchronously at the specified priority on the thread the Dispatcher is associated with. |