C# Class Rolcore.Diagnostics.ConsoleWriter

Implements a TextWriter for writing information to the Console.
Inheritance: System.IO.TextWriter
Datei anzeigen Open project: Rollins/Rolcore

Public Methods

Method Description
ConsoleWriter ( ) : System

Initializes a new instance of the DebuggerWriter class.

ConsoleWriter ( int level, string category ) : System

Initializes a new instance of the ConsoleWriter class with the specified level and category.

ConsoleWriter ( int level, string category, IFormatProvider formatProvider ) : System

Initializes a new instance of the ConsoleWriter class with the specified level, category and format provider.

Write ( char value ) : void
Write ( char buffer, int index, int count ) : void
Write ( string value ) : void

Writes the specified value to the console.

Protected Methods

Method Description
ConsoleWriter ( IFormatProvider formatProvider ) : System
Dispose ( bool disposing ) : void

Method Details

ConsoleWriter() public method

Initializes a new instance of the DebuggerWriter class.
public ConsoleWriter ( ) : System
return System

ConsoleWriter() protected method

protected ConsoleWriter ( IFormatProvider formatProvider ) : System
formatProvider IFormatProvider
return System

ConsoleWriter() public method

Initializes a new instance of the ConsoleWriter class with the specified level and category.
public ConsoleWriter ( int level, string category ) : System
level int A description of the importance of the messages.
category string The category of the messages.
return System

ConsoleWriter() public method

Initializes a new instance of the ConsoleWriter class with the specified level, category and format provider.
public ConsoleWriter ( int level, string category, IFormatProvider formatProvider ) : System
level int A description of the importance of the messages.
category string The category of the messages.
formatProvider IFormatProvider An object that controls formatting.
return System

Dispose() protected method

protected Dispose ( bool disposing ) : void
disposing bool
return void

Write() public method

public Write ( char value ) : void
value char
return void

Write() public method

public Write ( char buffer, int index, int count ) : void
buffer char
index int
count int
return void

Write() public method

Writes the specified value to the console.
public Write ( string value ) : void
value string Specifies the value to write.
return void