I am trying to find out an activity text into a LUIS dialog. I am using the LUIS intent handler:
[LuisIntent("")]
public async Task None(IDialogContext context, IAwaitable<IMessageActivity> result)
{
await context.PostAsync("I have no idea what you are talking about.");
context.Wait(MessageReceived);
}
but this throws an Exception:
File of type 'text/plain'
Can anyone suggest me why this happens? I also put a breakpoint but it isn't hit.