Click here to Skip to main content
15,892,746 members

Comments by Pramod_Kumar1 (Top 4 by date)

Pramod_Kumar1 20-Jul-21 5:10am View    
var con = GetDirectLineInstance.Conversations.StartConversation();
conversation = con;
ConversationId = con.ConversationId;
Activity userMessage = new Activity
{
From = new ChannelAccount(fromUser),
Text = text,
Type = ActivityTypes.Message
};
var res = instance.Conversations.PostActivity(ConversationId, userMessage);
var finalres = ReadBotMessage(instance, ConversationId);
Pramod_Kumar1 20-Jul-21 5:09am View    
var con = GetDirectLineInstance.Conversations.StartConversation();
conversation = con;
ConversationId = con.ConversationId;
Activity userMessage = new Activity
{
From = new ChannelAccount(fromUser),
Text = text,
Type = ActivityTypes.Message
};
var res = instance.Conversations.PostActivity(ConversationId, userMessage);
var finalres = ReadBotMessage(instance, ConversationId);
Pramod_Kumar1 19-Jul-21 5:22am View    
Yes, you are assuming correct, Please help us how can we end the call or reset the call using DirectLine or we should us any other api for this.

Pramod_Kumar1 1-Aug-20 3:34am View    
I have multiple docx file with diffrent formatting and design so i am combing all files one.I am using open xml, please suggest better solution, formatting and design should be remain of each files.