C# Класс Rolcore.Diagnostics.ConsoleWriter

Implements a TextWriter for writing information to the Console.
Наследование: System.IO.TextWriter
Показать файл Открыть проект

Открытые методы

Метод Описание
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.

Защищенные методы

Метод Описание
ConsoleWriter ( IFormatProvider formatProvider ) : System
Dispose ( bool disposing ) : void

Описание методов

ConsoleWriter() публичный Метод

Initializes a new instance of the DebuggerWriter class.
public ConsoleWriter ( ) : System
Результат System

ConsoleWriter() защищенный Метод

protected ConsoleWriter ( IFormatProvider formatProvider ) : System
formatProvider IFormatProvider
Результат System

ConsoleWriter() публичный Метод

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.
Результат System

ConsoleWriter() публичный Метод

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.
Результат System

Dispose() защищенный Метод

protected Dispose ( bool disposing ) : void
disposing bool
Результат void

Write() публичный Метод

public Write ( char value ) : void
value char
Результат void

Write() публичный Метод

public Write ( char buffer, int index, int count ) : void
buffer char
index int
count int
Результат void

Write() публичный Метод

Writes the specified value to the console.
public Write ( string value ) : void
value string Specifies the value to write.
Результат void