SpeechContinuousRecognitionSession.StartAsync 方法

定义

重载

StartAsync()

重载

使用 DefaultSpeechContinuousRecognitionMode 异步启动连续语音识别会话。

StartAsync(SpeechContinuousRecognitionMode)

重载

使用指定的 SpeechContinuousRecognitionMode 行为异步启动连续语音识别会话。

StartAsync()

重载

使用 DefaultSpeechContinuousRecognitionMode 异步启动连续语音识别会话。

public:
 virtual IAsyncAction ^ StartAsync() = StartAsync;
/// [Windows.Foundation.Metadata.Overload("StartAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncAction StartAsync();
[Windows.Foundation.Metadata.Overload("StartAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncAction StartAsync();
function startAsync()
Public Function StartAsync () As IAsyncAction

返回

完成该操作后,将调用异步处理程序。

属性

注解

必须始终在 StartAsync 之前调用 CompileConstraintsAsync,即使 Constraints 属性中未指定约束也是如此。

另请参阅

适用于

StartAsync(SpeechContinuousRecognitionMode)

重载

使用指定的 SpeechContinuousRecognitionMode 行为异步启动连续语音识别会话。

public:
 virtual IAsyncAction ^ StartAsync(SpeechContinuousRecognitionMode mode) = StartAsync;
/// [Windows.Foundation.Metadata.Overload("StartWithModeAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncAction StartAsync(SpeechContinuousRecognitionMode const& mode);
[Windows.Foundation.Metadata.Overload("StartWithModeAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncAction StartAsync(SpeechContinuousRecognitionMode mode);
function startAsync(mode)
Public Function StartAsync (mode As SpeechContinuousRecognitionMode) As IAsyncAction

参数

mode
SpeechContinuousRecognitionMode

语音识别行为。

返回

完成该操作后,将调用异步处理程序。

属性

注解

必须始终在 StartAsync 之前调用 CompileConstraintsAsync,即使 Constraints 属性中未指定约束也是如此。

适用于