Method Execute
Execute(object?)
Executes the RelayCommand<T> on the current command target.
Declaration
public void Execute(object? parameter)
Parameters
| Type | Name | Description |
|---|---|---|
| object | parameter | Data used by the command. |
Implements
Exceptions
| Type | Condition |
|---|---|
| InvalidOperationException | Thrown if the |
Execute(T?)
Executes the RelayCommand<T> on the current command target.
Declaration
public void Execute(T? parameter)
Parameters
| Type | Name | Description |
|---|---|---|
| T | parameter | Data used by the command. |