Esempio n. 1
0
        public void SpeechStop()
        {
            if (synth != null)
            {
                synth.SpeechStop();
                synth = null;
            }

            if (recog != null)
            {
                recog.Stop();
                recog = null;
            }
        }
Esempio n. 2
0
 public void RecogStop()
 {
     recog?.Stop();
 }