 | ConnectionMove Method (Channel, Channel, Channel) |
Move a channel to a new parent channel
Namespace:
TeamSpeak.Sdk.Client
Assembly:
TeamSpeak.Sdk (in TeamSpeak.Sdk.dll) Version: 0.1.6124.20226 (0.1.0.0)
Syntaxpublic Task Move(
Channel channel,
Channel newParent,
Channel newChannelOrder
)
Public Function Move (
channel As Channel,
newParent As Channel,
newChannelOrder As Channel
) As Task
public:
Task^ Move(
Channel^ channel,
Channel^ newParent,
Channel^ newChannelOrder
)
member Move :
channel : Channel *
newParent : Channel *
newChannelOrder : Channel -> Task
Parameters
- channel
- Type: TeamSpeak.Sdk.ClientChannel
The channel to be moved. - newParent
- Type: TeamSpeak.Sdk.ClientChannel
The parent channel where the moved channel is to be inserted as child. Use null to insert as top-level channel. - newChannelOrder
- Type: TeamSpeak.Sdk.ClientChannel
the Channel after which channel is sorted. meaning its going to be the first Channel under newParent.
Return Value
Type:
TaskA task that represents the asynchronous operation.
See Also