private void OnSpeechRecognitionAndSentimentProcessed(SpeechRecognitionAndSentimentResult result)
 {
     if (this.SpeechRecognitionAndSentimentProcessed != null)
     {
         this.SpeechRecognitionAndSentimentProcessed(this, result);
     }
 }
 private void OnSpeechRecognitionAndSentimentProcessed(SpeechRecognitionAndSentimentResult result)
 {
     this.SpeechRecognitionAndSentimentProcessed?.Invoke(this, result);
 }