| DiaSpringWrapperRecordedVoiceStreamDelegate Delegate |
Pointer of the callback function which will receive the recorded audio stream.
Namespace: InkostarAssembly: DiaSpringWrapper (in DiaSpringWrapper.dll) Version: 0.0.0.0
Syntaxpublic delegate void RecordedVoiceStreamDelegate(
byte[] DataBuffer,
DiaSpringWrapperCommonChannelInfo Channel
)
Public Delegate Sub RecordedVoiceStreamDelegate (
DataBuffer As Byte(),
Channel As DiaSpringWrapperCommonChannelInfo
)
public delegate void RecordedVoiceStreamDelegate(
array<unsigned char>^ DataBuffer,
DiaSpringWrapperCommonChannelInfo^ Channel
)
type RecordedVoiceStreamDelegate =
delegate of
DataBuffer : byte[] *
Channel : DiaSpringWrapperCommonChannelInfo -> unitParameters
- DataBuffer
- Type: SystemByte
An array of unicode characters containing raw PCM buffer of the same size specified when StartAudioStream was invoked. This buffer is overwritten on each callback - Channel
- Type: InkostarDiaSpringWrapperCommonChannelInfo
The ChannelInfo object for the channel being streamed. See ChannelInfo property for more details.
See Also