C# 클래스 SigStat.Common.Helpers.LogEntry

Represents a single entry of the log, consisting of a timestamp, a level, a sender and the message.
파일 보기 프로젝트 열기: bmeaut/sigstat

공개 프로퍼티들

프로퍼티 타입 설명
Level LogLevel
Message string
Sender object
Timestamp DateTime

공개 메소드들

메소드 설명
ToString ( ) : string

Format the contained data to string, divided by tab characters. Use this to display the entry in the console.

비공개 메소드들

메소드 설명
LogEntry ( DateTime timestamp, LogLevel level, object sender, string message ) : System

메소드 상세

ToString() 공개 메소드

Format the contained data to string, divided by tab characters. Use this to display the entry in the console.
public ToString ( ) : string
리턴 string

프로퍼티 상세

Level 공개적으로 프로퍼티

Log level of the entry.
public LogLevel Level
리턴 LogLevel

Message 공개적으로 프로퍼티

Main content of the entry.
public string Message
리턴 string

Sender 공개적으로 프로퍼티

Reference of the object that created the entry.
public object Sender
리턴 object

Timestamp 공개적으로 프로퍼티

Exact date and time of the entry's creation.
public DateTime Timestamp
리턴 DateTime