C# 클래스 DotNetMigrations.Loggers.ConsoleLog

상속: LoggerBase
파일 보기 프로젝트 열기: jpoehls/dotnetmigrations

공개 메소드들

메소드 설명
ConsoleLog ( ) : System
Write ( string message ) : void

Writes output to the console. Intelligently wraps text to fit the console's remaining line buffer, aligning wrapped lines to the current cursor position.

WriteError ( string message ) : void

Writes a line of red text to the console window.

WriteLine ( string message ) : void

Writes a line of text to the console window.

WriteWarning ( string message ) : void

Writes a line of yellow text to the console window.

메소드 상세

ConsoleLog() 공개 메소드

public ConsoleLog ( ) : System
리턴 System

Write() 공개 메소드

Writes output to the console. Intelligently wraps text to fit the console's remaining line buffer, aligning wrapped lines to the current cursor position.
public Write ( string message ) : void
message string
리턴 void

WriteError() 공개 메소드

Writes a line of red text to the console window.
public WriteError ( string message ) : void
message string The message to write.
리턴 void

WriteLine() 공개 메소드

Writes a line of text to the console window.
public WriteLine ( string message ) : void
message string The message to write.
리턴 void

WriteWarning() 공개 메소드

Writes a line of yellow text to the console window.
public WriteWarning ( string message ) : void
message string The message to write.
리턴 void