 | ServerErrorEventHandler Delegate |
Error codes sent by the server to the
Client
Namespace:
TeamSpeak.Sdk.Client
Assembly:
TeamSpeak.Sdk (in TeamSpeak.Sdk.dll) Version: 0.1.6124.20226 (0.1.0.0)
Syntaxpublic delegate void ServerErrorEventHandler(
Connection connection,
Error error,
string returnCode,
string extraMessage
)
Public Delegate Sub ServerErrorEventHandler (
connection As Connection,
error As Error,
returnCode As String,
extraMessage As String
)
public delegate void ServerErrorEventHandler(
Connection^ connection,
Error error,
String^ returnCode,
String^ extraMessage
)
type ServerErrorEventHandler =
delegate of
connection : Connection *
error : Error *
returnCode : string *
extraMessage : string -> unit
Parameters
- connection
- Type: TeamSpeak.Sdk.ClientConnection
the connection - error
- Type: TeamSpeak.SdkError
the error code - returnCode
- Type: SystemString
optional return code - extraMessage
- Type: SystemString
additional message send by the server
See Also