Click or drag to resize
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)
Syntax
public delegate void UserLoggingMessageEventHandler(
	string message,
	LogLevel level,
	string channel,
	Connection connection,
	string time,
	string completeString
)

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