Table of Contents

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

T

Type of the command input.

Inherited Members

Methods

Execute(T)

Executes the command.

bool Execute(T input)

Parameters

input T

Command input.

Returns

bool

true when a handler was invoked; otherwise, false.