C# Class DroidExplorer.Core.UI.CConsole.ConsoleWriter

Inheritance: System.IO.StringWriter
Mostrar archivo Open project: camalot/droidexplorer Class Usage Examples

Private Properties

Property Type Description

Public Methods

Method Description
ConsoleWriter ( ConsoleControl &console, System.Logger level ) : System

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.

Method Details

ConsoleWriter() public method

Initializes a new instance of the ConsoleWriter class.
public ConsoleWriter ( ConsoleControl &console, System.Logger level ) : System
console ConsoleControl
level System.Logger
return System

Write() public method

Writes a string to this instance of the StringWriter.
public Write ( string value ) : void
value string The string to write.
return void

WriteLine() public method

Writes the text representation of a Boolean followed by a line terminator to the text stream.
public WriteLine ( bool value ) : void
value bool The Boolean to write.
return void

WriteLine() public method

Writes a character followed by a line terminator to the text stream.
public WriteLine ( char value ) : void
value char The character to write to the text stream.
return void

WriteLine() public method

Writes a subarray of characters followed by a line terminator to the text stream.
public WriteLine ( char buffer, int index, int count ) : void
buffer char The character array from which data is read.
index int The index into at which to begin reading.
count int The maximum number of characters to write.
return void

WriteLine() public method

Writes the text representation of a decimal value followed by a line terminator to the text stream.
public WriteLine ( decimal value ) : void
value decimal The decimal value to write.
return void

WriteLine() public method

Writes the text representation of a 8-byte floating-point value followed by a line terminator to the text stream.
public WriteLine ( double value ) : void
value double The 8-byte floating-point value to write.
return void

WriteLine() public method

Writes the text representation of a 4-byte floating-point value followed by a line terminator to the text stream.
public WriteLine ( float value ) : void
value float The 4-byte floating-point value to write.
return void

WriteLine() public method

Writes the text representation of a 4-byte signed integer followed by a line terminator to the text stream.
public WriteLine ( int value ) : void
value int The 4-byte signed integer to write.
return void

WriteLine() public method

Writes the text representation of an 8-byte signed integer followed by a line terminator to the text stream.
public WriteLine ( long value ) : void
value long The 8-byte signed integer to write.
return void

WriteLine() public method

Writes the text representation of an object by calling ToString on this object, followed by a line terminator to the text stream.
public WriteLine ( object value ) : void
value object The object to write. If is null, only the line termination characters are written.
return void

WriteLine() public method

Writes a string followed by a line terminator to the text stream.
public WriteLine ( string value ) : void
value string The string to write. If is null, only the line termination characters are written.
return void

WriteLine() public method

Writes out a formatted string and a new line, using the same semantics as M:System.String.Format(System.String,System.Object).
public WriteLine ( string format, object arg0 ) : void
format string The formatted string.
arg0 object The object to write into the formatted string.
return void

WriteLine() public method

Writes out a formatted string and a new line, using the same semantics as M:System.String.Format(System.String,System.Object).
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

WriteLine() public method

Writes out a formatted string and a new line, using the same semantics as M:System.String.Format(System.String,System.Object).
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

WriteLine() public method

Writes the text representation of a 4-byte unsigned integer followed by a line terminator to the text stream.
public WriteLine ( uint value ) : void
value uint The 4-byte unsigned integer to write.
return void

WriteLine() public method

Writes the text representation of an 8-byte unsigned integer followed by a line terminator to the text stream.
public WriteLine ( ulong value ) : void
value ulong The 8-byte unsigned integer to write.
return void