RecognizerUpdateReachedEventArgs Class
Assembly: System.Speech (in system.speech.dll)
SpeechRecognitionRejectedEventArgs derives from System.EventArgs.
RecognizerUpdateReached events (SpeechRecognitionEngine.RecognizerUpdateReached andSpeechRecognizer.RecognizerUpdateReached) are generated to provide a mechanism for pausing a recognition engine to apply atomic and synchronous modifications.
An application uses the RequestRecognizerUpdate method (RequestRecognizerUpdateor RequestRecognizerUpdate) to request the generation of RecognizerUpdateReached events.
The example below show a handler for SpeechRecognitionEngine.RecognizerUpdateReached events which loads or unloads Recognition Grammar objects. The handler uses UserToken to obtain information about the recognizer request, created with RequestRecognizerUpdate ,to verify and implement the request.
//Handle requests for Grammar Loads.
_recognizer.RecognizerUpdateReached +=
delegate(object s, RecognizerUpdateReachedEventArgs args) {
GrammarRequest request = args.UserToken as GrammarRequest; //cast and check if incoming type is a request
if (request != null) { // We know this is a Grammar request now
if (request.Grammar == null)
throw new ArgumentException("Invalid grammar used.");
}
switch (request.RequestType) {
case GrammarRequestType.LoadGrammarSync:
RemoveDuplicateGrammar(request.Grammar);
_recognizer.LoadGrammar(request.Grammar);
DisplayGrammarLoad(request.Grammar);
break;
case GrammarRequestType.LoadGrammarAsync:
RemoveDuplicateGrammar(request.Grammar);
_recognizer.LoadGrammarAsync(request.Grammar);
break;
case GrammarRequestType.UnloadGrammar:
_recognizer.UnloadGrammar(request.Grammar);
DisplayGrammarUnload(request.Grammar);
break;
}
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.