Interface IAsyncRelayCommand<T>
A generic interface representing a more specific version of IAsyncRelayCommand.
Inherited Members
Namespace: ISynergy.Framework.Mvvm.Abstractions.Commands
Assembly: ISynergy.Framework.Mvvm.dll
Syntax
public interface IAsyncRelayCommand<in T> : IAsyncRelayCommand, IRelayCommand<T>, IRelayCommand
Type Parameters
Name | Description |
---|---|
T | The type used as argument for the interface methods. |
Remarks
This interface is needed to solve the diamond problem with base classes.
Methods
View SourceExecuteAsync(T)
Provides a strongly-typed variant of ExecuteAsync(Nullable<Object>).
Declaration
Task ExecuteAsync(T parameter)
Parameters
Type | Name | Description |
---|---|---|
T | parameter | The input parameter. |
Returns
Type | Description |
---|---|
Task | The |