Skip to content
Prev Previous commit
Next Next commit
Parameters were incorrect, or wrong order (depending on which overloa…
…d) (#95)

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 and billbliss committed Feb 27, 2018
commit 7db76632aed5b114798d3721b26bebc428f166dc
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