EmulateRecognizeAsync Method (RecognizedWordUnit[], CompareOptions, EmulateOptions)

Microsoft Speech Platform SDK 11

Collapse imageExpand ImageCopy imageCopyHover image

Emulates input of specific words to the speech recognizer, using an array of RecognizedWordUnit objects in place of audio for asynchronous speech recognition, specifies how the recognizer handles Unicode comparison between the words and the loaded speech recognition grammars, and specifies the type of recognition operation to perform.

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

Syntax

Visual Basic (Declaration)
Public Sub EmulateRecognizeAsync ( _
	wordUnits As RecognizedWordUnit(), _
	compareOptions As CompareOptions, _
	emulateOptions As EmulateOptions _
)
Visual Basic (Usage)
Dim instance As SpeechRecognitionEngine
Dim wordUnits As RecognizedWordUnit()
Dim compareOptions As CompareOptions
Dim emulateOptions As EmulateOptions

instance.EmulateRecognizeAsync(wordUnits, _
	compareOptions, emulateOptions)
C#
public void EmulateRecognizeAsync(
	RecognizedWordUnit[] wordUnits,
	CompareOptions compareOptions,
	EmulateOptions emulateOptions
)

Parameters

wordUnits
Type: array<Microsoft.Speech.Recognition..::..RecognizedWordUnit>[]()[][]

An array of word units that contains the input for the recognition operation

compareOptions
Type: System.Globalization..::..CompareOptions

A bitwise combination of the enumeration values that describe the type of comparison to use for the emulated recognition operation.

emulateOptions
Type: Microsoft.Speech.Recognition..::..EmulateOptions

The type of recognition operation to perform.

See Also