Edit

Share via


SpeechRecognitionConnector.Stop Method

Definition

Caps off the current stream, and stop recording audio. Will no-op if the SpeechRecognitionConnector is already stopped.

public:
 void Stop();
public void Stop ();
member this.Stop : unit -> unit
Public Sub Stop ()

Examples

The following example starts and stops the SpeechSynthesizerConnector.

C# Starting and stopping a SpeechSynthesizerConnector.


speechRecognitionConnector.AttachFlow(audioVideoFlow);
SpeechRecognitionStream stream = speechRecognitionConnector.Start();

// stream needs to be set to Microsoft.Speech.SpeechRecognition



speechRecognitionConnector.Stop();



Remarks

Also releases the receiver, so that another device can use the AudioVideoFlow.

Applies to