C# Class TagTool.Commands.Command

Base class for a tag manipulation command.
Mostrar archivo Open project: TheGuardians/TagTool Class Usage Examples

Public Methods

Method Description
Execute ( List args ) : bool

Executes the command.

Protected Methods

Method Description
Command ( CommandFlags flags, string name, string description, string usage, string helpMessage ) : System

Initializes a new instance of the Command class.

Method Details

Command() protected method

Initializes a new instance of the Command class.
protected Command ( CommandFlags flags, string name, string description, string usage, string helpMessage ) : System
flags CommandFlags Command flags.
name string The command's name.
description string The command's description.
usage string The command's usage string.
helpMessage string The command's help message.
return System

Execute() public abstract method

Executes the command.
public abstract Execute ( List args ) : bool
args List The command arguments.
return bool