Find.FindValues(String, List<SortedValue>, FindValuesOptions) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
This method is internal and should not be used.
public static System.Collections.Generic.List<Microsoft.Bot.Builder.Dialogs.Choices.ModelResult<Microsoft.Bot.Builder.Dialogs.Choices.FoundValue>> FindValues (string utterance, System.Collections.Generic.List<Microsoft.Bot.Builder.Dialogs.Choices.SortedValue> values, Microsoft.Bot.Builder.Dialogs.Choices.FindValuesOptions options = default);
static member FindValues : string * System.Collections.Generic.List<Microsoft.Bot.Builder.Dialogs.Choices.SortedValue> * Microsoft.Bot.Builder.Dialogs.Choices.FindValuesOptions -> System.Collections.Generic.List<Microsoft.Bot.Builder.Dialogs.Choices.ModelResult<Microsoft.Bot.Builder.Dialogs.Choices.FoundValue>>
Public Shared Function FindValues (utterance As String, values As List(Of SortedValue), Optional options As FindValuesOptions = Nothing) As List(Of ModelResult(Of FoundValue))
Parameters
- utterance
- String
The input.
- values
- List<SortedValue>
The values.
- options
- FindValuesOptions
The options for the search.
Returns
A list of found values.
Remarks
Please use FindChoices(String, IList<Choice>, FindChoicesOptions) or FindChoices(String, IList<String>, FindChoicesOptions) instead.