 | ConnectionMove Method (Client, Channel, String) |
Move a client to a channel.
Namespace:
TeamSpeak.Sdk.Client
Assembly:
TeamSpeak.Sdk (in TeamSpeak.Sdk.dll) Version: 0.1.6124.20226 (0.1.0.0)
Syntaxpublic Task Move(
Client client,
Channel channel,
string password = null
)
Public Function Move (
client As Client,
channel As Channel,
Optional password As String = Nothing
) As Task
public:
Task^ Move(
Client^ client,
Channel^ channel,
String^ password = nullptr
)
member Move :
client : Client *
channel : Channel *
?password : string
(* Defaults:
let _password = defaultArg password null
*)
-> Task
Parameters
- client
- Type: TeamSpeak.Sdk.ClientClient
The client to move. - channel
- Type: TeamSpeak.Sdk.ClientChannel
The channel to join. - password (Optional)
- Type: SystemString
Optional password. Pass empty string or null if unused.
Return Value
Type:
TaskA task that represents the asynchronous operation.
See Also