Interface IAsyncCommand
Represents an interface for an asynchronous command.
public interface IAsyncCommand : ICommand
- Inherited Members
Remarks
Properties
IsBusy
Gets a value indicating whether the command is busy.
bool IsBusy { get; }
Property Value
Methods
ExecuteAsync(object)
Execute the set action asynchronous.
Task ExecuteAsync(object parameter)
Parameters
parameter
objectData used by the command.
Returns
- Task
The running task.
Events
ExecutingCompleted
Occurs when the command executing completed.
event EventHandler ExecutingCompleted