 | ConnectionMute Method |
Mutes one or more clients
Namespace:
TeamSpeak.Sdk.Client
Assembly:
TeamSpeak.Sdk (in TeamSpeak.Sdk.dll) Version: 0.1.6124.20226 (0.1.0.0)
Syntaxpublic Task Mute(
params Client[] clients
)
Public Function Mute (
ParamArray clients As Client()
) As Task
public:
Task^ Mute(
... array<Client^>^ clients
)
member Mute :
clients : Client[] -> Task
Parameters
- clients
- Type: TeamSpeak.Sdk.ClientClient
Array of clients to be muted
Return Value
Type:
TaskA task that represents the asynchronous operation.
Remarks
Clients can be locally muted. This information is handled client-side only and not visible to other clients. It mainly serves as a sort of individual "ban" or "ignore" feature, where users can decide not to listen to certain clients anymore.
When a client becomes muted, he will no longer be heard by the muter. Also the TeamSpeak 3 server will stop sending voice packets.
The mute state is not visible to the muted client nor to other clients. It is only available to the muting client by checking
Muted
See Also