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
[System.Serializable]
public class SpeechHypothesizedEventArgs : System.Speech.Recognition.RecognitionEventArgs
type SpeechHypothesizedEventArgs = class
    inherit RecognitionEventArgs
[<System.Serializable>]
type SpeechHypothesizedEventArgs = class
    inherit RecognitionEventArgs
Public Class SpeechHypothesizedEventArgs
Inherits RecognitionEventArgs
Inheritance
SpeechHypothesizedEventArgs
Attributes

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

Result

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

(Inherited from RecognitionEventArgs)

Methods

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetType()

Gets the Type of the current instance.

(Inherited from Object)
MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
ToString()

Returns a string that represents the current object.

(Inherited from Object)

Applies to

See also