Interface IConsoleCommand
Assembly: Experior.Interfaces.dll
Syntax
public interface IConsoleCommand
Properties
CommandMatches
List of accepted command matches
Declaration
string[] CommandMatches { get; }
Property Value
Type |
Description |
System.String[] |
|
ConsoleHandler
Declaration
IConsoleHandler ConsoleHandler { get; set; }
Property Value
Methods
Execute(String[])
Called when user enters matching command text
Declaration
bool Execute(string[] args)
Parameters
Type |
Name |
Description |
System.String[] |
args |
|
Returns
Type |
Description |
System.Boolean |
|