 | CheckServerUniqueIdentifierEventHandler Delegate |
Used to check if the unique identifier is the correct one
Namespace:
TeamSpeak.Sdk.Client
Assembly:
TeamSpeak.Sdk (in TeamSpeak.Sdk.dll) Version: 0.1.6124.20226 (0.1.0.0)
Syntaxpublic delegate void CheckServerUniqueIdentifierEventHandler(
Connection connection,
string serverUniqueIdentifier,
ref bool cancelConnect
)
Public Delegate Sub CheckServerUniqueIdentifierEventHandler (
connection As Connection,
serverUniqueIdentifier As String,
ByRef cancelConnect As Boolean
)
public delegate void CheckServerUniqueIdentifierEventHandler(
Connection^ connection,
String^ serverUniqueIdentifier,
bool% cancelConnect
)
type CheckServerUniqueIdentifierEventHandler =
delegate of
connection : Connection *
serverUniqueIdentifier : string *
cancelConnect : bool byref -> unit
Parameters
- connection
- Type: TeamSpeak.Sdk.ClientConnection
the Connection - serverUniqueIdentifier
- Type: SystemString
UniqueIdentifier of the server - cancelConnect
- Type: SystemBoolean
true if the connection process should be aborted; otherwise false
See Also