SpeechRecognitionConnector.Stop Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.