IRecognize<T> Interface
Definition
Interface for recognizers that look for matches in user input.
public interface IRecognize<T>
type IRecognize<'T> = interface
Public Interface IRecognize(Of T)
Type Parameters
- T
Underlying form state.
- Derived
Methods
Help(T, Object) |
Return the help string describing what are valid inputs to the recognizer. |
Matches(IMessageActivity, Object) |
Return the matches found in the input. |
PromptArgs() |
Return the arguments to pass to the prompt. |
ValidInputs(Object) |
Return valid inputs to describe a particular value. |
ValueDescription(Object) |
Return the description of a specific value. |
ValueDescriptions() |
Return all possible value descriptions in order to support enumeration. |
Values() |
Return all possible values or null if a primitive type. |