LoadGrammarCompletedEventArgs Class
.NET Framework 3.0
Class passed to handlers of events generated when a new grammar is asynchronously loaded into a recognition engine.
Namespace: System.Speech.Recognition
Assembly: System.Speech (in system.speech.dll)
Assembly: System.Speech (in system.speech.dll)
In the example below, a handler for SpeechRecognizer.LoadGrammarCompleted uses information provided by the instance of LoadGrammarCompletedEventArgs it receives as an argument to update a display of Grammar objects available in an application.
//On load we actuall update the display.
//A hash table is used to get the node information we added in AddGrammar.
_recognizer.LoadGrammarCompleted +=
delegate(object sender, LoadGrammarCompletedEventArgs eventArgs) {
//Update Grammar display upon completion of asynchronous grammar load.
DisplayGrammarLoad(eventArgs.Grammar);
};
System.Object
System.EventArgs
System.ComponentModel.AsyncCompletedEventArgs
System.Speech.Recognition.LoadGrammarCompletedEventArgs
System.EventArgs
System.ComponentModel.AsyncCompletedEventArgs
System.Speech.Recognition.LoadGrammarCompletedEventArgs
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: