SpeechSynthesisConnector.Stop Method

Definition

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.

Applies to