Hi,
I have the following code in conversationupdate:
- else if (message.Type == ActivityTypes.ConversationUpdate)
- {
- // Handle conversation state changes, like members being added and removed
- // Use Activity.MembersAdded and Activity.MembersRemoved and Activity.Action for info
- // Not available in all channels
- private IDialog
MakeLuisDialog() - {
- return Chain.From(() => new LUISDialog(Balnc.BuildForm));
- //throw new NotImplementedException();
- }
- }
- [Serializable]
- public class Balnc
- {
- public Details? Type;
- public static IForm
BuildForm() - {
- return new FormBuilder
() - //.Message("Welcome My name is Doe !")
- .Build();
- }
- }
I want when my conversation opens, bot will provide me options in dialog wo select.
some demo/code suggestions will be useful.

Purushottam RathorePosted May 25, 2017, 8:34 AM