Which of the following method signature is used if a Microsoft Teams Bot has to find all the members in a group chat?
1.var mbrs = await connector.GetConversationMemberAsync(message.Conversation.Id);
2.var mbrs = await connector.Conversations.GetConversationMemberAsync(message.Conversation.Id);
3.var mbrs = await connector.GetMemberAsync(message.Conversation.Id);
4.var mbrs = await connector.Conversations.GetMemberAsync(message.Conversation.Id);
Answers
Answered by
2
Answer: I third it will be the 3rd one
Explanation:
Answered by
0
The Correct answer is option3.
var mbrs = await connector.GetMemberAsync(message.Conversation.Id)
- It is type of python program in which the async and await keywords were introduced to make asynchronous programming which is used in Microsoft teams to identify all members in a group conversation.
- Microsoft teams is software programs which is used to create room for meetings virtually among users.
Similar questions