Choreoh.MainWindow.RecognizeSpeech C# (CSharp) Method

RecognizeSpeech() private method

private RecognizeSpeech ( RecognitionResult result ) : void
result RecognitionResult
return void
        private void RecognizeSpeech(RecognitionResult result)
        {
            //string status = "Recognzied: " + (result == null ? string.Empty : result.Text + " " + result.Confidence);
            //this.ReportStatus(status);
            string newText = result.Text.ToString();
            this.UpdateText(newText);
            this.comment = this.comment + " " + newText;
        }