Represents an ICommand that is executed asynchronously.
Namespace: Metalama.Patterns.Wpf
Assembly: Metalama.Patterns.Wpf.dll
Syntax
public interface IAsyncCommand : ICommand, INotifyPropertyChangedProperties
| Name | Description |
|---|---|
| CanCancel | Gets a value indicating whether the Cancel() command can be called. |
| ExecutionTask | Gets the Task of the last execution. |
| IsCancellationRequested | Gets a value indicating whether the Cancel() has been called for any pending command execution. |
| IsRunning | Gets a value indicating whether any command is currently executing. |
Methods
| Name | Description |
|---|---|
| Cancel() | Cancels all pending executions of the current command. |