| AudioMixerEnqueueData Method  | 
            Adds audio data to the mixing queue.
            
 
Namespace: Ozeki.MediaAssembly: OzekiSDK (in OzekiSDK.dll) Version: 1.8.12.0 (1.8.12)
Syntaxpublic void EnqueueData(
	int sourceId,
	WaveFormat format,
	byte[] data
)
Public Sub EnqueueData ( 
	sourceId As Integer,
	format As WaveFormat,
	data As Byte()
)
public:
void EnqueueData(
	int sourceId, 
	WaveFormat^ format, 
	array<unsigned char>^ data
)
member EnqueueData : 
        sourceId : int * 
        format : WaveFormat * 
        data : byte[] -> unit 
Parameters
- sourceId
 - Type: SystemInt32
The unique identifier of the source. - format
 - Type: Ozeki.MediaWaveFormat
The format of the enqueued data. - data
 - Type: SystemByte
The raw data. 
See Also