Méthode | Description | |
---|---|---|
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.
|
public LogMessage ( LogLevels type, string msg ) : System | ||
type | LogLevels | |
msg | string | |
Résultat | System |
public LogMessage ( LogLevels type, string msg, string subject ) : System | ||
type | LogLevels | |
msg | string | |
subject | string | |
Résultat | System |
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 |
msg | string | /// The message belonging to this log entry. /// |
Résultat | System |
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. /// |
Résultat | System |