Interface ICommand<T>
A parameterized command that performs operations against the provided parameter.
Namespace: ExtendedXmlSerializer.Core
Assembly: ExtendedXmlSerializer.dll
Syntax
public interface ICommand<in T>
Type Parameters
T
The parameter type. |
Methods
Execute(T)
Executes an operation against the provided parameter.
Declaration
void Execute(T parameter)
Parameters
T
parameter
The input parameter. |