LitDev.LDSpeech._SpeechRecognitionEvent C# (CSharp) Method

_SpeechRecognitionEvent() static private method

static private _SpeechRecognitionEvent ( Object sender, SpeechRecognizedEventArgs e ) : void
sender Object
e SpeechRecognizedEventArgs
return void
        static void _SpeechRecognitionEvent(Object sender, SpeechRecognizedEventArgs e)
        {
            lastSpoken = e.Result.Text;
            lastSpokenConfidence = e.Result.Confidence;
            _SpeechRecognitionDelegate();
        }