Interface ICommandConsole
Command console contract.
Namespace: PayrollEngine.Client.Command
Assembly: PayrollEngine.Client.Core.dll
Syntax
public interface ICommandConsole
Properties
DisplayLevel
Display level.
Declaration
DisplayLevel DisplayLevel { get; set; }
Property Value
| Type | Description |
|---|---|
| DisplayLevel |
ErrorMode
Error mode.
Declaration
ErrorMode ErrorMode { get; set; }
Property Value
| Type | Description |
|---|---|
| ErrorMode |
WaitMode
Wait mode.
Declaration
WaitMode WaitMode { get; set; }
Property Value
| Type | Description |
|---|---|
| WaitMode |
Methods
DisplayErrorLine(string)
Display error line.
Declaration
void DisplayErrorLine(string text = null)
Parameters
| Type | Name | Description |
|---|---|---|
| string | text | Text to display. |
DisplayInfo(string)
Display info.
Declaration
void DisplayInfo(string text)
Parameters
| Type | Name | Description |
|---|---|---|
| string | text | Text to display. |
DisplayInfoLine(string)
Display info line.
Declaration
void DisplayInfoLine(string text)
Parameters
| Type | Name | Description |
|---|---|---|
| string | text | Text to display. |
DisplayNewLine()
Display new line.
Declaration
void DisplayNewLine()
DisplaySuccessLine(string)
Display success line.
Declaration
void DisplaySuccessLine(string text)
Parameters
| Type | Name | Description |
|---|---|---|
| string | text | Text to display. |
DisplayText(string)
Display text.
Declaration
void DisplayText(string text)
Parameters
| Type | Name | Description |
|---|---|---|
| string | text | Text to display. |
DisplayTextLine(string)
Display text line.
Declaration
void DisplayTextLine(string text)
Parameters
| Type | Name | Description |
|---|---|---|
| string | text | Text to display. |
DisplayTitleLine(string)
Display title line.
Declaration
void DisplayTitleLine(string text)
Parameters
| Type | Name | Description |
|---|---|---|
| string | text | Text to display. |
WriteErrorLine(string)
Write error line.
Declaration
void WriteErrorLine(string text)
Parameters
| Type | Name | Description |
|---|---|---|
| string | text | Text to display. |