SpeechRecognitionEngine.EmulateRecognizeAsync Method (String, CompareOptions)

Asynchronously simulate audio input to the recognition engine with a string and specified case sensitivity.

Namespace: Microsoft.Speech.Recognition
Assembly: Microsoft.Speech (in microsoft.speech.dll)

Syntax

'Declaration

Parameters

  • inputText
    A string containing text used as an input phrase in place of audio input during recognition emulation.
  • compareOptions
    A member of the CompareOptions enumeration determining whether the emulation is case sensitive or case insensitive.

Remarks

As EmulateRecognizeAsync methods return void, applications can only obtain results from asynchronous emulation of speech recognition by handling the events that would be produced by the raising of asynchronous emulation event EmulateRecognizeCompleted as well as actual audio input recognition events such as SpeechRecognized.

Note

The completion of asynchronous emulation event, EmulateRecognizeCompleted, is always generated after the audio input events such as SpeechRecognized.

A RecognizeCompleted event is not generated by the completion of a EmulateRecognizeAsync.

The only supported values of the compareOptions argument are OrdinalIgnoreCase and IgnoreCase

All other members of will generate a NotSupportedException exception or return a null.

Emulated recognition ignores new lines and extra white space and treats punctuation literally, rather than letting it define phrases.

Example

private void EmulateTextBox_KeyPress(object sender, KeyPressEventArgs eventArgs) {
    if ((Keys)eventArgs.KeyChar == Keys.Enter) {
_recognitionEngine.EmulateRecognizeAsync(_emulateTextBox.Text);

    }
}
// Emulate when Button is pressed in the emulateTextBox.
private void _emulateButton_Click(object sender, EventArgs e) {
_recognitionEngine.EmulateRecognizeAsync(_emulateTextBox.Text, System.Globalization.CompareOptions.IgnoreCase);
}

Thread Safety

All public static (Shared in Visual Basic) members of this type are thread-safe. Instance members are not guaranteed to be thread-safe.

Platforms

Development Platforms

Windows XP Professional with Service Pack 2 (SP2), Windows Server 2003, Windows Vista Ultimate Edition, Windows Vista Business Edition, Windows Vista Enterprise Edition

Target Platforms

See Also

Reference

SpeechRecognitionEngine Class
SpeechRecognitionEngine Members
Microsoft.Speech.Recognition Namespace
SpeechRecognize
SpeechRecognitionEngine.EmulateRecognize Method
SpeechRecognitionEngine.EmulateRecognizeAsync Method
CompareOptions
EmulateRecognizeCompleted