IResponderSendAudio Method |
Sends the audio back to the browser. The format of the audio is inferred from the MIME type.
Namespace: VirtualRadar.Interface.WebServerAssembly: VirtualRadar.Interface (in VirtualRadar.Interface.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax void SendAudio(
IRequest request,
IResponse response,
byte[] audio,
string mimeType
)
Sub SendAudio (
request As IRequest,
response As IResponse,
audio As Byte(),
mimeType As String
)
void SendAudio(
IRequest^ request,
IResponse^ response,
array<unsigned char>^ audio,
String^ mimeType
)
abstract SendAudio :
request : IRequest *
response : IResponse *
audio : byte[] *
mimeType : string -> unit
Parameters
- request
- Type: VirtualRadar.Interface.WebServerIRequest
- response
- Type: VirtualRadar.Interface.WebServerIResponse
- audio
- Type: SystemByte
- mimeType
- Type: SystemString
See Also