SpeechSynthesisConnector.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.
Stops sending data to the AudioVideoFlow.
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.
// connector needs to be set to Microsoft.Speech.SpeechSpeechSynthesizer
speechSynthesisConnector.AttachFlow(audioVideoFlow);
speechSynthesisConnector.Start();
speechSynthesisConnector.Stop();
Remarks
Will no-op if SpeechSynthesisConnector is already stopped, or is not attached to an AudioVideoFlow.