Interface ICommand<T>
- Namespace
- Executables
- Assembly
- executables.dll
Represents a command that may succeed or fail.
public interface ICommand<in T> : IExecutable<T, bool>
Type Parameters
TType of the command input.
- Inherited Members
Methods
Execute(T)
Executes the command.
bool Execute(T input)
Parameters
inputTCommand input.