 | ConnectStatusChangeEventHandler Delegate |
Namespace:
TeamSpeak.Sdk.Client
Assembly:
TeamSpeak.Sdk (in TeamSpeak.Sdk.dll) Version: 0.1.6124.20226 (0.1.0.0)
Syntaxpublic delegate void ConnectStatusChangeEventHandler(
Connection connection,
ConnectStatus newStatus,
Error error
)
Public Delegate Sub ConnectStatusChangeEventHandler (
connection As Connection,
newStatus As ConnectStatus,
error As Error
)
public delegate void ConnectStatusChangeEventHandler(
Connection^ connection,
ConnectStatus newStatus,
Error error
)
type ConnectStatusChangeEventHandler =
delegate of
connection : Connection *
newStatus : ConnectStatus *
error : Error -> unit
Parameters
- connection
- Type: TeamSpeak.Sdk.ClientConnection
Connection whose status changed - newStatus
- Type: TeamSpeak.SdkConnectStatus
the new status of the connection - error
- Type: TeamSpeak.SdkError
error that resulted in the change in connection status
See Also