Interface IRelayCommand<T>
A generic interface representing a more specific version of IRelayCommand.
Inherited Members
Namespace: Unity.AppUI.MVVM
Assembly: solution.dll
Syntax
public interface IRelayCommand<in T> : IRelayCommand, ICommand
  Type Parameters
| Name | Description | 
|---|---|
| T | The type used as argument for the interface methods.  | 
      
Methods
| Name | Description | 
|---|---|
| CanExecute(T?) | Provides a strongly-typed variant of ICommand.CanExecute(object).  | 
      
| Execute(T?) | Provides a strongly-typed variant of ICommand.Execute(object).  |