 | UserLoggingMessageEventHandler Delegate |
Used for user customizable logging and handling
Namespace:
TeamSpeak.Sdk.Client
Assembly:
TeamSpeak.Sdk (in TeamSpeak.Sdk.dll) Version: 0.1.6124.20226 (0.1.0.0)
Syntaxpublic delegate void UserLoggingMessageEventHandler(
string message,
LogLevel level,
string channel,
Connection connection,
string time,
string completeString
)
Public Delegate Sub UserLoggingMessageEventHandler (
message As String,
level As LogLevel,
channel As String,
connection As Connection,
time As String,
completeString As String
)
public delegate void UserLoggingMessageEventHandler(
String^ message,
LogLevel level,
String^ channel,
Connection^ connection,
String^ time,
String^ completeString
)
type UserLoggingMessageEventHandler =
delegate of
message : string *
level : LogLevel *
channel : string *
connection : Connection *
time : string *
completeString : string -> unit
Parameters
- message
- Type: SystemString
Actual log message text. - level
- Type: TeamSpeak.SdkLogLevel
Severity of log message, defined by the LogLevel. Note that only log messages of a level higher or equal to than the one configured in LogLevel will appear. - channel
- Type: SystemString
Optional custom text to categorize the message channel. - connection
- Type: TeamSpeak.Sdk.ClientConnection
the Connection - time
- Type: SystemString
Date and time when the log message occurred. - completeString
- Type: SystemString
A verbose log message including all other parameters for convenience.
See Also