C# Class Rolcore.Diagnostics.ConsoleWriter

Implements a TextWriter for writing information to the Console.
Inheritance: System.IO.TextWriter
Afficher le fichier Open project: Rollins/Rolcore

Méthodes publiques

Méthode 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.

Méthodes protégées

Méthode Description
ConsoleWriter ( IFormatProvider formatProvider ) : System
Dispose ( bool disposing ) : void

Method Details

ConsoleWriter() public méthode

Initializes a new instance of the DebuggerWriter class.
public ConsoleWriter ( ) : System
Résultat System

ConsoleWriter() protected méthode

protected ConsoleWriter ( IFormatProvider formatProvider ) : System
formatProvider IFormatProvider
Résultat System

ConsoleWriter() public méthode

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.
Résultat System

ConsoleWriter() public méthode

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.
Résultat System

Dispose() protected méthode

protected Dispose ( bool disposing ) : void
disposing bool
Résultat void

Write() public méthode

public Write ( char value ) : void
value char
Résultat void

Write() public méthode

public Write ( char buffer, int index, int count ) : void
buffer char
index int
count int
Résultat void

Write() public méthode

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