I'm trying to access the complete original text from within a method marked as a LuisIntent
within a LuisDialog
.
The documentation shows these methods as taking two arguments:
IDialogContext context, LuisResult result
Neither of which publicly exposes the original text of the message. The context object does contain the message but in a private property (context.data.message.text
) which is not accessible.
Is there a way to access this in the context
, or can it be passed into the dialog constructor?