Redigera

SpeechHypothesizedEventArgs Class

Definition

Returns notification from SpeechHypothesized or SpeechHypothesized events.

This class supports the .NET Framework infrastructure and is not intended to be used directly from application code.

public ref class SpeechHypothesizedEventArgs : System::Speech::Recognition::RecognitionEventArgs
public class SpeechHypothesizedEventArgs : System.Speech.Recognition.RecognitionEventArgs
type SpeechHypothesizedEventArgs = class
    inherit RecognitionEventArgs
Public Class SpeechHypothesizedEventArgs
Inherits RecognitionEventArgs
Inheritance
SpeechHypothesizedEventArgs

Examples

The example below creates a handler for SpeechRecognizer.SpeechHypothesized or SpeechRecognitionEngine.SpeechHypothesized events. The handler uses an instance of SpeechHypothesizedEventArgs to return and display information about a tentatively recognized phrase.

// Create a handler for the SpeechHypothesized event.
recognizer.SpeechHypothesized += new EventHandler<SpeechHypothesizedEventArgs>(recognizer_SpeechHypothesized);

// Handle the event and display the hypothesized result.
void recognizer_SpeechHypothesized (object sender, SpeechHypothesizedEventArgs e)
  {
    Console.WriteLine("Hypothesized text: " + e.Result.Text);
  }

Remarks

A SpeechHypothesized event is raised by the SpeechRecognizer and SpeechRecognitionEngine classes.

You can obtain detailed information about a tentatively recognized phrase by using the Result property.

Numerous SpeechHypothesized events are generated as a recognition engine attempts to identify an input phrase. Typically, handling these events is useful only for debugging.

SpeechHypothesizedEventArgs derives from RecognitionEventArgs.

Properties

Name Description
Result

Gets the recognition result data associated with the speech recognition event.

(Inherited from RecognitionEventArgs)

Applies to

See also