RecognizedPhrase.ReplacementWordUnits Property

Definition

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

public:
 property System::Collections::ObjectModel::Collection<System::Speech::Recognition::ReplacementText ^> ^ ReplacementWordUnits { System::Collections::ObjectModel::Collection<System::Speech::Recognition::ReplacementText ^> ^ get(); };
public System.Collections.ObjectModel.Collection<System.Speech.Recognition.ReplacementText> ReplacementWordUnits { get; }
member this.ReplacementWordUnits : System.Collections.ObjectModel.Collection<System.Speech.Recognition.ReplacementText>
Public ReadOnly Property ReplacementWordUnits As Collection(Of ReplacementText)

Property Value

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

Remarks

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.

Applies to

See also