Property | Type | Description |
---|
Method | Description | |
---|---|---|
ConsoleWriter ( |
Initializes a new instance of the ConsoleWriter class.
|
|
Write ( string value ) : void |
Writes a string to this instance of the StringWriter.
|
|
WriteLine ( bool value ) : void |
Writes the text representation of a Boolean followed by a line terminator to the text stream.
|
|
WriteLine ( char value ) : void |
Writes a character followed by a line terminator to the text stream.
|
|
WriteLine ( char buffer, int index, int count ) : void |
Writes a subarray of characters followed by a line terminator to the text stream.
|
|
WriteLine ( decimal value ) : void |
Writes the text representation of a decimal value followed by a line terminator to the text stream.
|
|
WriteLine ( double value ) : void |
Writes the text representation of a 8-byte floating-point value followed by a line terminator to the text stream.
|
|
WriteLine ( float value ) : void |
Writes the text representation of a 4-byte floating-point value followed by a line terminator to the text stream.
|
|
WriteLine ( int value ) : void |
Writes the text representation of a 4-byte signed integer followed by a line terminator to the text stream.
|
|
WriteLine ( long value ) : void |
Writes the text representation of an 8-byte signed integer followed by a line terminator to the text stream.
|
|
WriteLine ( object value ) : void |
Writes the text representation of an object by calling ToString on this object, followed by a line terminator to the text stream.
|
|
WriteLine ( string value ) : void |
Writes a string followed by a line terminator to the text stream.
|
|
WriteLine ( string format, object arg0 ) : void |
Writes out a formatted string and a new line, using the same semantics as M:System.String.Format(System.String,System.Object).
|
|
WriteLine ( string format, object arg0, object arg1 ) : void |
Writes out a formatted string and a new line, using the same semantics as M:System.String.Format(System.String,System.Object).
|
|
WriteLine ( string format, object arg0, object arg1, object arg2 ) : void |
Writes out a formatted string and a new line, using the same semantics as M:System.String.Format(System.String,System.Object).
|
|
WriteLine ( uint value ) : void |
Writes the text representation of a 4-byte unsigned integer followed by a line terminator to the text stream.
|
|
WriteLine ( ulong value ) : void |
Writes the text representation of an 8-byte unsigned integer followed by a line terminator to the text stream.
|
public ConsoleWriter ( |
||
console | ||
level | System.Logger | |
return | System |
public Write ( string value ) : void | ||
value | string | The string to write. |
return | void |
public WriteLine ( bool value ) : void | ||
value | bool | The Boolean to write. |
return | void |
public WriteLine ( char value ) : void | ||
value | char | The character to write to the text stream. |
return | void |
public WriteLine ( char buffer, int index, int count ) : void | ||
buffer | char | The character array from which data is read. |
index | int | The index into |
count | int | The maximum number of characters to write. |
return | void |
public WriteLine ( decimal value ) : void | ||
value | decimal | The decimal value to write. |
return | void |
public WriteLine ( double value ) : void | ||
value | double | The 8-byte floating-point value to write. |
return | void |
public WriteLine ( float value ) : void | ||
value | float | The 4-byte floating-point value to write. |
return | void |
public WriteLine ( int value ) : void | ||
value | int | The 4-byte signed integer to write. |
return | void |
public WriteLine ( long value ) : void | ||
value | long | The 8-byte signed integer to write. |
return | void |
public WriteLine ( object value ) : void | ||
value | object | The object to write. If |
return | void |
public WriteLine ( string value ) : void | ||
value | string | The string to write. If |
return | void |
public WriteLine ( string format, object arg0 ) : void | ||
format | string | The formatted string. |
arg0 | object | The object to write into the formatted string. |
return | void |
public WriteLine ( string format, object arg0, object arg1 ) : void | ||
format | string | The formatting string. |
arg0 | object | The object to write into the format string. |
arg1 | object | The object to write into the format string. |
return | void |
public WriteLine ( string format, object arg0, object arg1, object arg2 ) : void | ||
format | string | The formatting string. |
arg0 | object | The object to write into the format string. |
arg1 | object | The object to write into the format string. |
arg2 | object | The object to write into the format string. |
return | void |
public WriteLine ( uint value ) : void | ||
value | uint | The 4-byte unsigned integer to write. |
return | void |
public WriteLine ( ulong value ) : void | ||
value | ulong | The 8-byte unsigned integer to write. |
return | void |