Hi,
I have the following code in conversationupdate:
- else if (message.Type == ActivityTypes.ConversationUpdate)
- {
-
-
-
-
- private IDialog MakeLuisDialog()
- {
- return Chain.From(() => new LUISDialog(Balnc.BuildForm));
-
- }
-
- }
and the form as:
- [Serializable]
- public class Balnc
- {
- public Details? Type;
-
-
- public static IForm BuildForm()
- {
- return new FormBuilder()
-
- .Build();
-
- }
- }
I want when my conversation opens, bot will provide me options in dialog wo select.
some demo/code suggestions will be useful.