Event that is raised when a speech recognizer that is operating in continuous recognition mode generates a hypothesis about what a user is trying to say.
public:
event TypedEventHandler<SpeechRecognizer^ , SpeechHypothesisResultEventArgs^ >^ HypothesisAvailable {
EventRegistrationToken add (TypedEventHandler<SpeechRecognizer^ , SpeechHypothesisResultEventArgs^ >^ value);
void remove (EventRegistrationToken token);
}
This event can be used to provide feedback to the user before the user’s utterance is completed. However, the content of the hypothesis is likely unsuitable for direct display to the user. Instead, you might choose to give a visual indicator to the user, such as a facial expression on an in-game character, to indicate whether or not the user is being understood.
Namespace: Windows.Xbox.Speech.Recognition
Metadata: windows.winmd
ISpeechRecognizer.ContinuousRecognitionResultAvailable Event