C# Класс Interpreter.util.DebuggerWriter

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

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

Метод Описание
DebuggerWriter ( ) : System

Initializes a new instance of the DebuggerWriter class.

DebuggerWriter ( int level, string category ) : System

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

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

Initializes a new instance of the DebuggerWriter 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

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

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

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

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

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

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

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

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

Initializes a new instance of the DebuggerWriter class with the specified level and category.
public DebuggerWriter ( int level, string category ) : System
level int A description of the importance of the messages.
category string The category of the messages.
Результат System

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

Initializes a new instance of the DebuggerWriter class with the specified level, category and format provider.
public DebuggerWriter ( 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() публичный Метод

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