 | EditPlaybackVoiceDataEventHandler Delegate |
Used when a incoming voice packet from a remote
Client was decoded and is about to be played
Namespace:
TeamSpeak.Sdk.Client
Assembly:
TeamSpeak.Sdk (in TeamSpeak.Sdk.dll) Version: 0.1.6124.20226 (0.1.0.0)
Syntaxpublic delegate void EditPlaybackVoiceDataEventHandler(
Client client,
short[] samples,
int channels
)
Public Delegate Sub EditPlaybackVoiceDataEventHandler (
client As Client,
samples As Short(),
channels As Integer
)
public delegate void EditPlaybackVoiceDataEventHandler(
Client^ client,
array<short>^ samples,
int channels
)
type EditPlaybackVoiceDataEventHandler =
delegate of
client : Client *
samples : int16[] *
channels : int -> unit
Parameters
- client
- Type: TeamSpeak.Sdk.ClientClient
the Client whose sound data is about to be played - samples
- Type: SystemInt16
a Array containing the sound date - channels
- Type: SystemInt32
the number of channels in the sound data
See Also