VoiceCommandEngine.OnSpeechRecognized C# (CSharp) Method

OnSpeechRecognized() protected method

protected OnSpeechRecognized ( VoiceCommandEvents e ) : void
e VoiceCommandEvents
return void
    protected virtual void OnSpeechRecognized(VoiceCommandEvents.SpeechRecognizedEventArgs e)
    {
        if (SpeechRecognizedEvent != null)
        {
            SpeechRecognizedEvent(this, e);
        }
    }