Interface ITextOutputProvider
Interface for handling text output from commands
Namespace: Benday.CommandsFramework
Assembly: Benday.CommandsFramework.dll
Syntax
public interface ITextOutputProvider
Methods
| Edit this page View SourceWrite(string)
Write text to output without an ending newline
Declaration
void Write(string message)
Parameters
Type | Name | Description |
---|---|---|
string | message |
WriteLine()
Write a new line to the output
Declaration
void WriteLine()
WriteLine(string)
Write a line of text to output
Declaration
void WriteLine(string line)
Parameters
Type | Name | Description |
---|---|---|
string | line | Text to write |