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);
        }
    }