Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Parameters were incorrect, or wrong order (depending on which overload)
There are only 2 overloads on the extension method:
SendToConversationAsync(this IConversations operations, Activity activity, CancellationToken cancellationToken = default(CancellationToken));
SendToConversationAsync(this IConversations operations, string conversationId, Activity activity, CancellationToken cancellationToken = default(CancellationToken));
  • Loading branch information
daltskin authored Feb 21, 2018
commit 43d6f617b5b61dcaffa55698e5a46e1f0f55e1cd
2 changes: 1 addition & 1 deletion msteams-platform/scenarios/bots-personal-conversations.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ Activity newActivity = new Activity()
};

// Post the message to chat conversation with user
await client.Conversations.SendToConversationAsync(newActivity, response.Id);
await client.Conversations.SendToConversationAsync(newActivity);
```

#### Node.js example
Expand Down