Can anyone give a specific C# example of sending a message to a bot and waiting for the reply? I'm trying to test a bot without using the emulator, so I can have more control and see more details. I've read documentation about the different REST APIs, but I'm really not sure how to specifically implement these in a C# program.
I think I can start it with:
using Microsoft.Bot.Connector; var client = new ConnectorClient(appID, appSecret);
But I don't know where to go from there. I want to test sending a message from a user to a bot, and then waiting for the bot to respond, and then displaying the response message.
Thanks for any help.