C# 클래스 IrcShark.LogMessage

Represents a message to log.
파일 보기 프로젝트 열기: hapm/IrcShark 1 사용 예제들

공개 메소드들

메소드 설명
LogMessage ( LogLevels type, string msg ) : System
LogMessage ( LogLevels type, string msg, string subject ) : System
LogMessage ( string msg ) : System
LogMessage ( string channel, int id, LogLevel level, string msg ) : System

Initializes a new instance of the LogMessage class with the given text and level on the given channel.

LogMessage ( string channel, int id, string msg ) : System

Initializes a new instance of the LogMessage class with the given text on the given channel.

메소드 상세

LogMessage() 공개 메소드

public LogMessage ( LogLevels type, string msg ) : System
type LogLevels
msg string
리턴 System

LogMessage() 공개 메소드

public LogMessage ( LogLevels type, string msg, string subject ) : System
type LogLevels
msg string
subject string
리턴 System

LogMessage() 공개 메소드

public LogMessage ( string msg ) : System
msg string
리턴 System

LogMessage() 공개 메소드

Initializes a new instance of the LogMessage class with the given text and level on the given channel.
public LogMessage ( string channel, int id, LogLevel level, string msg ) : System
channel string /// The name of the channel the message was logged to. ///
id int /// An identfication number for this message unique for the log channel. ///
level LogLevel /// The of this LogMessage. ///
msg string /// The message belonging to this log entry. ///
리턴 System

LogMessage() 공개 메소드

Initializes a new instance of the LogMessage class with the given text on the given channel.
public LogMessage ( string channel, int id, string msg ) : System
channel string /// The name of the channel the message was logged to. ///
id int /// An identfication number for this message unique for the log channel. ///
msg string /// The message belonging to this log entry. ///
리턴 System