Using Dialogs in Microsoft Bot Framework (Creating lead in CRM) – Nishant Rana’s Weblog
Blog Syndicated with Nishant Rana’s Permission
Let us continue with our previous post on Bot Framework
https://nishantrana.me/2017/04/18/getting-started-with-microsoft-bot-framework/
Here we will implement our own dialog.
Dialogs are basically a class which implements IDialog interface. Dialog sends a message to the user and is in suspended state till it waits for the response from the user. The state is saved in State Service provided by Bot Connector Service.
Here MyDialog is our dialog class which implements the IDialog Interface i.e. implement StartAsync method which would be the first method called. We also need to mark our class as Serializable.
Next we need to update our controller class to point it to our new MyDialog class.
Here we will ask the user about the product in which he is interested, then get the name and description and finally using this information we will create a Lead record inside CRM.
The lead record created in CRM.
Here we are making use of PromptDialog type for managing interactions with the user. Using PromptDialog we can easily prompt user for text, choice, attachment, confirmation etc.
The context here is the IDialogContext. In resume parameter, we can specify which dialog methods to be called next after the user has responded. The response from the user is passed to the subsequent dialog methods.
using Microsoft.Bot.Builder.Dialogs; using Microsoft.Bot.Connector; using Microsoft.Xrm.Sdk; using Microsoft.Xrm.Sdk.Client; using System; using System.Collections.Generic; using System.Threading.Tasks; namespace Bot_Application1.Dialogs { public enum InterestOptions { Product1, Product2, Product3 } // Decorate the class with Serializable attribute [Serializable] // Implement IDialog Interface public class MyDialog : IDialog { InterestOptions interestOptions; string name; string description; // Start Sysnc is the first method which is called public async Task StartAsync(IDialogContext context) { await context.PostAsync("Hi how may i help you?"); // wait for the user's response context.Wait(MessageRecieveAsync); } public virtual async Task MessageRecieveAsync(IDialogContext context, IAwaitable argument) { // get the message var message = await argument; if (message.Text.Contains("interested")) { PromptDialog.Choice( context: context, resume: ResumeGetInterest, options: (IEnumerable<InterestOptions>)Enum.GetValues(typeof(InterestOptions)), prompt: "Which product are your interested in :", retry: "I didn't understand. Please try again."); } } public async Task ResumeGetInterest(IDialogContext context, IAwaitable result) { interestOptions = await result; PromptDialog.Text( context: context, resume: ResumeGetName, prompt: "Please provide your name", retry: "I didn't understand. Please try again."); } public async Task ResumeGetName(IDialogContext context, IAwaitable result) { name = await result; PromptDialog.Text( context: context, resume: ResumeGetDescription, prompt: "Please provide a detailed description", retry: "I didn't understand. Please try...