ApplicationInvokeAsync Method (Action) |
Invokes the specified action on the UI thread asynchronously with a Task.
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public Task InvokeAsync(
Action action
)
Public Function InvokeAsync (
action As Action
) As Task
member InvokeAsync :
action : Action -> Task
Parameters
- action
- Type: SystemAction
Action to execute.
Return Value
Type:
TaskThe task that is used to await when the action is completed.
See Also