RecognizedPhrase::ReplacementWordUnits Property

 

Gets information about the text that the speech recognizer changed as part of speech-to-text normalization.

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

public:
property Collection<ReplacementText^>^ ReplacementWordUnits {
	Collection<ReplacementText^>^ get();
}

Property Value

Type: System.Collections.ObjectModel::Collection<ReplacementText^>^

A collection of ReplacementText objects that describe sections of text that the speech recognizer replaced when it normalized the recognized input.

As part of the speech recognition process, the speech recognizer normalizes the recognized input into a display form.

For example, the spoken input, "twenty five dollars", generates a recognition result where the Words property contains the words, "twenty", "five", and "dollars", and the Text property contains the phrase, "$25.00". For more information about text normalization, see the ReplacementText class.

.NET Framework
Available since 3.0
Return to top
Show: