Edit

Share via


AsyncRelayCommand<T>.ExecuteAsync Method

Definition

Overloads

ExecuteAsync(Object)

Provides a more specific version of Execute(Object), also returning the Task representing the async operation being executed.

ExecuteAsync(T)

ExecuteAsync(Object)

Source:
AsyncRelayCommand%7BT%7D.cs
Source:
AsyncRelayCommand%7BT%7D.cs

Provides a more specific version of Execute(Object), also returning the Task representing the async operation being executed.

public System.Threading.Tasks.Task ExecuteAsync(object? parameter);
abstract member ExecuteAsync : obj -> System.Threading.Tasks.Task
override this.ExecuteAsync : obj -> System.Threading.Tasks.Task
Public Function ExecuteAsync (parameter As Object) As Task

Parameters

parameter
Object

The input parameter.

Returns

The Task representing the async operation being executed.

Implements

Applies to

ExecuteAsync(T)

Source:
AsyncRelayCommand%7BT%7D.cs
Source:
AsyncRelayCommand%7BT%7D.cs
public System.Threading.Tasks.Task ExecuteAsync(T? parameter);
abstract member ExecuteAsync : 'T -> System.Threading.Tasks.Task
override this.ExecuteAsync : 'T -> System.Threading.Tasks.Task
Public Function ExecuteAsync (parameter As T) As Task

Parameters

parameter
T

Returns

Implements

Applies to