SpeechRecognitionGrammarFileConstraint 类

定义

基于语音识别语法规范中定义的单词或短语列表的自定义语法约束, ( (SRGS) 文件) ,可由 SpeechRecognizer 对象识别。

注意

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

public ref class SpeechRecognitionGrammarFileConstraint sealed
/// [Windows.Foundation.Metadata.Activatable(Windows.Media.SpeechRecognition.ISpeechRecognitionGrammarFileConstraintFactory, 65536, Windows.Foundation.UniversalApiContract)]
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 65536)]
/// [Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
class SpeechRecognitionGrammarFileConstraint 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.ISpeechRecognitionGrammarFileConstraintFactory, 65536, "Windows.Foundation.UniversalApiContract")]
class SpeechRecognitionGrammarFileConstraint final
[Windows.Foundation.Metadata.Activatable(typeof(Windows.Media.SpeechRecognition.ISpeechRecognitionGrammarFileConstraintFactory), 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 SpeechRecognitionGrammarFileConstraint
[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.ISpeechRecognitionGrammarFileConstraintFactory), 65536, "Windows.Foundation.UniversalApiContract")]
public sealed class SpeechRecognitionGrammarFileConstraint
function SpeechRecognitionGrammarFileConstraint(file, tag)
Public NotInheritable Class SpeechRecognitionGrammarFileConstraint
继承
Object Platform::Object IInspectable SpeechRecognitionGrammarFileConstraint
属性
实现

Windows 要求

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

注解

约束(或语法)定义语音识别器可匹配的语音字词和短语。 可以指定一种预定义的 Web 服务语法 (SpeechRecognitionTopicConstraint) ,也可以创建随应用一起安装的自定义语法, (使用自定义约束在设备上执行语音识别) 。

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

必须始终在 RecognizeAsync 或RecognizeWithUIAsync 之前调用 CompileConstraintsAsync,即使未在 Constraints 属性中指定任何约束。

构造函数

SpeechRecognitionGrammarFileConstraint(StorageFile)

从文件对象创建 SpeechRecognitionGrammarFileConstraint 类的实例。

SpeechRecognitionGrammarFileConstraint(StorageFile, String)

从文件对象和标记创建 SpeechRecognitionGrammarFileConstraint 类的实例。

属性

GrammarFile

获取 StorageFile 对象,该对象表示语音识别语法规范 (SRGS) 语法文件。

IsEnabled

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

Probability

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

Tag

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

Type

获取约束的类型。

适用于

另请参阅