Class SynchronousCommand
Base class for commands that are run synchronously.
Inheritance
SynchronousCommand
Implements
Inherited Members
Namespace: Benday.CommandsFramework
Assembly: Benday.CommandsFramework.dll
Syntax
public abstract class SynchronousCommand : CommandBase, ISynchronousCommand
Constructors
| Edit this page View SourceSynchronousCommand(CommandExecutionInfo, ITextOutputProvider)
Constructor
Declaration
public SynchronousCommand(CommandExecutionInfo info, ITextOutputProvider outputProvider)
Parameters
Type | Name | Description |
---|---|---|
CommandExecutionInfo | info | Command execution information |
ITextOutputProvider | outputProvider | Output provider instance |
Methods
| Edit this page View SourceExecute()
Executes the command
Declaration
public virtual void Execute()
OnExecute()
Abstract method. This is where the work of the command should be added.
Declaration
protected abstract void OnExecute()
OnValidationFailure(List<IArgument>)
Template method for handling validation failures. The default implementation displays the usage info for the command and the summary of validation errors.
Declaration
protected virtual void OnValidationFailure(List<IArgument> validationResult)
Parameters
Type | Name | Description |
---|---|---|
List<IArgument> | validationResult |