C# 클래스 Rolcore.Diagnostics.ConsoleWriter

Implements a TextWriter for writing information to the Console.
상속: System.IO.TextWriter
파일 보기 프로젝트 열기: Rollins/Rolcore

공개 메소드들

메소드 설명
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