你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

PatternMatchingEntity.CreateListEntity 方法

定义

重载

CreateListEntity(String, EntityMatchMode, IEnumerable<String>)

使用指定的意向 ID EntityMatchMode 和短语创建模式匹配实体。 此实体类型将根据提供的短语匹配。

CreateListEntity(String, EntityMatchMode, String[])

使用指定的意向 ID EntityMatchMode 和短语创建模式匹配实体。 此实体类型将根据提供的短语匹配。

CreateListEntity(String, EntityMatchMode, IEnumerable<String>)

使用指定的意向 ID EntityMatchMode 和短语创建模式匹配实体。 此实体类型将根据提供的短语匹配。

public static Microsoft.CognitiveServices.Speech.Intent.PatternMatchingEntity CreateListEntity (string entityId, Microsoft.CognitiveServices.Speech.Intent.EntityMatchMode mode, System.Collections.Generic.IEnumerable<string> phrases);
static member CreateListEntity : string * Microsoft.CognitiveServices.Speech.Intent.EntityMatchMode * seq<string> -> Microsoft.CognitiveServices.Speech.Intent.PatternMatchingEntity
Public Shared Function CreateListEntity (entityId As String, mode As EntityMatchMode, phrases As IEnumerable(Of String)) As PatternMatchingEntity

参数

entityId
String

表示此实体的唯一 ID 的字符串。

mode
EntityMatchMode

List 实体的 EntityMatchMode。 严格意味着捕获的实体必须出现在短语列表中。

phrases
IEnumerable<String>

用于匹配列表实体的短语列表。

返回

正在创建的模式匹配实体。

适用于

CreateListEntity(String, EntityMatchMode, String[])

使用指定的意向 ID EntityMatchMode 和短语创建模式匹配实体。 此实体类型将根据提供的短语匹配。

public static Microsoft.CognitiveServices.Speech.Intent.PatternMatchingEntity CreateListEntity (string entityId, Microsoft.CognitiveServices.Speech.Intent.EntityMatchMode mode, params string[] phrases);
static member CreateListEntity : string * Microsoft.CognitiveServices.Speech.Intent.EntityMatchMode * string[] -> Microsoft.CognitiveServices.Speech.Intent.PatternMatchingEntity
Public Shared Function CreateListEntity (entityId As String, mode As EntityMatchMode, ParamArray phrases As String()) As PatternMatchingEntity

参数

entityId
String

表示此实体的唯一 ID 的字符串。

mode
EntityMatchMode

List 实体的 EntityMatchMode。 严格意味着捕获的实体必须出现在短语列表中。

phrases
String[]

用于匹配列表实体的短语列表。

返回

正在创建的模式匹配实体。

适用于