SpeechRecognitionConnector can be bound to an AudioVideoFlow, and provides a stream of audio data compatible with Microsoft.Speech.

Namespace:  Microsoft.Rtc.Collaboration.AudioVideo
Assembly:  Microsoft.Rtc.Collaboration(in Microsoft.Rtc.Collaboration.dll)

Syntax

Visual Basic (Declaration)
Public 
Class 
SpeechRecognitionConnector _
	
Implements 
IDisposable
C#
public 
class 
SpeechRecognitionConnector : 
IDisposable
Visual C++
public 
ref class 
SpeechRecognitionConnector : 
IDisposable
JavaScript

Microsoft.Rtc.Collaboration.AudioVideo.SpeechRecognitionConnector
= 
function();

Type.createClass(
	 
'Microsoft.Rtc.Collaboration.AudioVideo.SpeechRecognitionConnector',
		null,
	
IDisposable);

Remarks

One such stream is provided every time Start() is called on the SpeechRecognitionConnector. The stream will contain the audio up until the point at which Stop() is called on the connector. Calling Start() again will then generate a new stream for the new interval, and so on.

Inheritance Hierarchy

Object
   Microsoft.Rtc.Collaboration.AudioVideo . . :: . SpeechRecognitionConnector

See Also