C# 클래스 EpLibrary.cs.LogWriter

Log Writer Singleton Instance
상속: BaseTextFile
파일 보기 프로젝트 열기: juhgiyo/EpLibrary.cs 1 사용 예제들

공개 메소드들

메소드 설명
LogWriter ( ) : System

Default Constructor

LogWriter ( LogWriter b ) : System

Default Copy Constructor

LogWriter ( string logFilename = null ) : System

Default Constructor

WriteLog ( String pMsg ) : void

Writer given message to the log with current time.

보호된 메소드들

메소드 설명
loadFromFile ( StreamReader stream ) : void

Actual load Function that loads values from the file.

writeLoop ( ) : void

Loop Function that writes to the file.

메소드 상세

LogWriter() 공개 메소드

Default Constructor
public LogWriter ( ) : System
리턴 System

LogWriter() 공개 메소드

Default Copy Constructor
public LogWriter ( LogWriter b ) : System
b LogWriter the object to copy from
리턴 System

LogWriter() 공개 메소드

Default Constructor
public LogWriter ( string logFilename = null ) : System
logFilename string
리턴 System

WriteLog() 공개 메소드

Writer given message to the log with current time.
public WriteLog ( String pMsg ) : void
pMsg String the message to print to the log file.
리턴 void

loadFromFile() 보호된 메소드

Actual load Function that loads values from the file.
protected loadFromFile ( StreamReader stream ) : void
stream System.IO.StreamReader stream from the file
리턴 void

writeLoop() 보호된 메소드

Loop Function that writes to the file.
protected writeLoop ( ) : void
리턴 void