标签: c# uwp win-universal-app speech-recognition windows-10-universal
在.NET个应用中,用于语音识别的命名空间为:System.Speech,语音识别的timeout设置为:
.NET
System.Speech
timeout
recognizer.Timeouts.BabbleTimeout = TimeSpan.FromSeconds(60 * 60)
在UWP个应用中,用于语音识别的命名空间是:Windows.Media.SpeechRecognition,我如何设置timeout?假设我需要语音识别才能在停止识别之前保持听力1小时。
UWP
Windows.Media.SpeechRecognition
我试过了this,但没跟我合作。