次の方法で共有


ChoiceRecognizers.RecognizeChoices メソッド

定義

オーバーロード

RecognizeChoices(String, IList<Choice>, FindChoicesOptions)

ユーザー入力を選択肢の一覧と照合します。

RecognizeChoices(String, IList<String>, FindChoicesOptions)

ユーザー入力を選択肢の一覧と照合します。

RecognizeChoices(String, IList<Choice>, FindChoicesOptions)

ユーザー入力を選択肢の一覧と照合します。

public static System.Collections.Generic.List<Microsoft.Bot.Builder.Dialogs.Choices.ModelResult<Microsoft.Bot.Builder.Dialogs.Choices.FoundChoice>> RecognizeChoices (string utterance, System.Collections.Generic.IList<Microsoft.Bot.Builder.Dialogs.Choices.Choice> list, Microsoft.Bot.Builder.Dialogs.Choices.FindChoicesOptions options = default);
static member RecognizeChoices : string * System.Collections.Generic.IList<Microsoft.Bot.Builder.Dialogs.Choices.Choice> * Microsoft.Bot.Builder.Dialogs.Choices.FindChoicesOptions -> System.Collections.Generic.List<Microsoft.Bot.Builder.Dialogs.Choices.ModelResult<Microsoft.Bot.Builder.Dialogs.Choices.FoundChoice>>
Public Shared Function RecognizeChoices (utterance As String, list As IList(Of Choice), Optional options As FindChoicesOptions = Nothing) As List(Of ModelResult(Of FoundChoice))

パラメーター

utterance
String

入力。

list
IList<Choice>

選択肢の一覧。

options
FindChoicesOptions

オプション。認識戦略を制御するオプション。

戻り値

最も関連性の高い順に最初に並べ替えられた、見つかった選択肢の一覧。

適用対象

RecognizeChoices(String, IList<String>, FindChoicesOptions)

ユーザー入力を選択肢の一覧と照合します。

public static System.Collections.Generic.List<Microsoft.Bot.Builder.Dialogs.Choices.ModelResult<Microsoft.Bot.Builder.Dialogs.Choices.FoundChoice>> RecognizeChoices (string utterance, System.Collections.Generic.IList<string> choices, Microsoft.Bot.Builder.Dialogs.Choices.FindChoicesOptions options = default);
static member RecognizeChoices : string * System.Collections.Generic.IList<string> * Microsoft.Bot.Builder.Dialogs.Choices.FindChoicesOptions -> System.Collections.Generic.List<Microsoft.Bot.Builder.Dialogs.Choices.ModelResult<Microsoft.Bot.Builder.Dialogs.Choices.FoundChoice>>
Public Shared Function RecognizeChoices (utterance As String, choices As IList(Of String), Optional options As FindChoicesOptions = Nothing) As List(Of ModelResult(Of FoundChoice))

パラメーター

utterance
String

入力。

choices
IList<String>

選択肢の一覧。

options
FindChoicesOptions

オプション。認識戦略を制御するオプション。

戻り値

最も関連性の高い順に最初に並べ替えられた、見つかった選択肢の一覧。

適用対象