SpeechRecognitionListConstraint 类

定义

基于 SpeechRecognizer 对象可识别的字词或短语列表的自定义语法约束。 初始化后,此对象将添加到 Constraints 集合中。

注意

使用自定义约束的语音识别是在设备上执行的。

public ref class SpeechRecognitionListConstraint sealed
/// [Windows.Foundation.Metadata.Activatable(Windows.Media.SpeechRecognition.ISpeechRecognitionListConstraintFactory, 65536, Windows.Foundation.UniversalApiContract)]
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 65536)]
/// [Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
class SpeechRecognitionListConstraint final
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 65536)]
/// [Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
/// [Windows.Foundation.Metadata.Activatable(Windows.Media.SpeechRecognition.ISpeechRecognitionListConstraintFactory, 65536, "Windows.Foundation.UniversalApiContract")]
class SpeechRecognitionListConstraint final
[Windows.Foundation.Metadata.Activatable(typeof(Windows.Media.SpeechRecognition.ISpeechRecognitionListConstraintFactory), 65536, typeof(Windows.Foundation.UniversalApiContract))]
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 65536)]
[Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
public sealed class SpeechRecognitionListConstraint
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 65536)]
[Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
[Windows.Foundation.Metadata.Activatable(typeof(Windows.Media.SpeechRecognition.ISpeechRecognitionListConstraintFactory), 65536, "Windows.Foundation.UniversalApiContract")]
public sealed class SpeechRecognitionListConstraint
function SpeechRecognitionListConstraint(commands, tag)
Public NotInheritable Class SpeechRecognitionListConstraint
继承
Object Platform::Object IInspectable SpeechRecognitionListConstraint
属性
实现

Windows 要求

设备系列
Windows 10 (在 10.0.10240.0 中引入)
API contract
Windows.Foundation.UniversalApiContract (在 v1.0 中引入)

注解

约束(或语法)定义语音识别器可匹配的语音字词和短语。 可以指定一个预定义的 Web 服务语法 (SpeechRecognitionTopicConstraint) 也可以创建随应用一起安装的自定义语法(如此处所述)。

  • (SpeechRecognitionListConstraint) 编程列表约束提供了一种使用单词或短语列表创建简单语法的轻型方法。 列表约束非常适用于识别清晰的短语。 因为语音识别引擎仅须处理语音即可确认匹配,所以采用某种语法明确指定所有字词也可提高识别准确度。 也可以以编程方式更新该列表。
  • 语音识别语法规范 (SRGS) 语法 (SpeechRecognitionGrammarFileConstraint) 是静态文档,与编程列表约束不同,它使用 版本 1.0 定义的 XML 格式。 语音识别语法规范 (SRGS) 语法让你在单个识别中捕获多个语义含义,从而提供对语音识别体验的最大控制。

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

注意

可以将 SpeechRecognitionListConstraint 与 Web 服务 SpeechRecognitionTopicConstraint 结合使用,通过提供一组你认为可能会使用的特定于域的关键字来提高听写会话期间的准确性。

构造函数

SpeechRecognitionListConstraint(IIterable<String>)

从单词或短语数组创建 SpeechRecognitionListConstraint 类的实例。

SpeechRecognitionListConstraint(IIterable<String>, String)

从单词或短语数组和标记创建 SpeechRecognitionListConstraint 类的实例。

属性

Commands

获取构成约束的单词或短语的数组。

IsEnabled

获取或设置语音识别器是否可以使用该约束来执行识别。

Probability

获取或设置约束的加权值。

Tag

获取或设置可用于标识约束的标记。

Type

获取约束的类型。

适用于

另请参阅