Created
September 26, 2016 09:31
-
-
Save AndyButland/9cefc3f944c026a368bddfc5c9236d5a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [LuisIntent(“WhoIs”)] | |
| public async Task WhoIs(IDialogContext context, LuisResult result) | |
| { | |
| var response = await GetWhoIsResponse(result.Entities.First()); | |
| await context.PostAsync(response); | |
| context.Wait(MessageReceived); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment