IntentHandler Delegate
Definition
The handler for a LUIS intent.
public delegate System.Threading.Tasks.Task IntentHandler(IDialogContext context, LuisResult luisResult);
type IntentHandler = delegate of IDialogContext * LuisResult -> Task
Public Delegate Function IntentHandler(context As IDialogContext, luisResult As LuisResult) As Task
Parameters
- context
- IDialogContext
The dialog context.
- luisResult
- LuisResult
The LUIS result.
Return Value
A task representing the completion of the intent processing.
- Inheritance
-
IntentHandler