SpeechRecognitionHypothesis SpeechRecognitionHypothesis SpeechRecognitionHypothesis SpeechRecognitionHypothesis Class

Definition

A recognition result fragment returned by the speech recognizer during an ongoing dictation session.

The result fragment is useful for demonstrating that speech recognition is processing input during a lengthy dictation session.

public : sealed class SpeechRecognitionHypothesis : ISpeechRecognitionHypothesispublic sealed class SpeechRecognitionHypothesis : ISpeechRecognitionHypothesisPublic NotInheritable Class SpeechRecognitionHypothesis Implements ISpeechRecognitionHypothesis// You can use this class in JavaScript.
Attributes
Windows 10 requirements
Device family
Windows 10 (introduced v10.0.10240.0)
API contract
Windows.Foundation.UniversalApiContract (introduced v1)

Remarks

An app retrieves this object through the SpeechRecognitionHypothesisGeneratedEventArgs.Hypothesis property while handling a HypothesisGenerated event.

Properties

Text Text Text Text

Gets the text of the hypothesis, or recognition result fragment, returned by the speech recognizer during an ongoing dictation session.

public : PlatForm::String Text { get; }public string Text { get; }Public ReadOnly Property Text As string// You can use this property in JavaScript.
Value
PlatForm::String string string string

The text of the recognition result fragment.

See Also

See Also