IntentHandler Delegate
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.
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.