VoiceCommandEngine.OnSpeechRecognized C# (CSharp) Метод

OnSpeechRecognized() защищенный Метод

protected OnSpeechRecognized ( VoiceCommandEvents e ) : void
e VoiceCommandEvents
Результат void
    protected virtual void OnSpeechRecognized(VoiceCommandEvents.SpeechRecognizedEventArgs e)
    {
        if (SpeechRecognizedEvent != null)
        {
            SpeechRecognizedEvent(this, e);
        }
    }