你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
PatternMatchingIntent 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
PatternMatchingIntent(String) |
使用指定的意向 ID 创建模式匹配意向。 |
PatternMatchingIntent(String, IEnumerable<String>) |
使用指定的意向 ID 和短语集合创建模式匹配意向。 |
PatternMatchingIntent(String, String[]) |
使用指定的意向 ID 创建模式匹配意向。 |
PatternMatchingIntent(String)
使用指定的意向 ID 创建模式匹配意向。
public PatternMatchingIntent (string intentId);
new Microsoft.CognitiveServices.Speech.Intent.PatternMatchingIntent : string -> Microsoft.CognitiveServices.Speech.Intent.PatternMatchingIntent
Public Sub New (intentId As String)
参数
- intentId
- String
表示此意向的唯一 ID 的字符串。
适用于
PatternMatchingIntent(String, IEnumerable<String>)
使用指定的意向 ID 和短语集合创建模式匹配意向。
public PatternMatchingIntent (string intentId, System.Collections.Generic.IEnumerable<string> phrases);
new Microsoft.CognitiveServices.Speech.Intent.PatternMatchingIntent : string * seq<string> -> Microsoft.CognitiveServices.Speech.Intent.PatternMatchingIntent
Public Sub New (intentId As String, phrases As IEnumerable(Of String))
参数
- intentId
- String
表示此意向的唯一 ID 的字符串。
- phrases
- IEnumerable<String>
要用于匹配意向的短语列表。
适用于
PatternMatchingIntent(String, String[])
使用指定的意向 ID 创建模式匹配意向。
public PatternMatchingIntent (string intentId, params string[] phrases);
new Microsoft.CognitiveServices.Speech.Intent.PatternMatchingIntent : string * string[] -> Microsoft.CognitiveServices.Speech.Intent.PatternMatchingIntent
Public Sub New (intentId As String, ParamArray phrases As String())
参数
- intentId
- String
表示此意向的唯一 ID 的字符串。
- phrases
- String[]
要用于匹配意向的短语列表。