次の方法で共有


Find.FindChoices メソッド

定義

オーバーロード

FindChoices(String, IList<Choice>, FindChoicesOptions)

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

FindChoices(String, IList<String>, FindChoicesOptions)

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

FindChoices(String, IList<Choice>, FindChoicesOptions)

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

public static System.Collections.Generic.List<Microsoft.Bot.Builder.Dialogs.Choices.ModelResult<Microsoft.Bot.Builder.Dialogs.Choices.FoundChoice>> FindChoices (string utterance, System.Collections.Generic.IList<Microsoft.Bot.Builder.Dialogs.Choices.Choice> choices, Microsoft.Bot.Builder.Dialogs.Choices.FindChoicesOptions options = default);
static member FindChoices : 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 FindChoices (utterance As String, choices As IList(Of Choice), Optional options As FindChoicesOptions = Nothing) As List(Of ModelResult(Of FoundChoice))

パラメーター

utterance
String

入力。

choices
IList<Choice>

選択肢の一覧。

options
FindChoicesOptions

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

戻り値

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

適用対象

FindChoices(String, IList<String>, FindChoicesOptions)

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

public static System.Collections.Generic.List<Microsoft.Bot.Builder.Dialogs.Choices.ModelResult<Microsoft.Bot.Builder.Dialogs.Choices.FoundChoice>> FindChoices (string utterance, System.Collections.Generic.IList<string> choices, Microsoft.Bot.Builder.Dialogs.Choices.FindChoicesOptions options = default);
static member FindChoices : 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 FindChoices (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

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

戻り値

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

適用対象