[Beta10] Context.PostAsync not rendering AdditionalProperties of AdaptiveCard
See original GitHub issueAfter updating the nuget package “AdaptiveCards” to version=“1.0.0-beta09” the code below has no efect on the json returned by my bot:
var card = new AdaptiveCard();
card.AdditionalProperties.Add(new KeyValuePair<string, object>("customType", "MyCard1"));
It seem that after calling the AdditionalProperties.Add() method has no efect.
Issue Analytics
- State:
- Created 6 years ago
- Comments:21 (9 by maintainers)
Top Results From Across the Web
[Beta10] Context.PostAsync not rendering ...
Hi @ederbond, I'm unable to repro this. Can you confirm the output from card.ToJson()? It should have the additional properties you ...
Read more >c# - Microsoft Bot Framework Adaptive Cards not rendering ...
Microsoft Bot Framework Adaptive Cards not rendering properly ... PostAsync(replyToConversation); context.Done(true); }.
Read more >Design actionable message cards using Adaptive Card ...
Outlook introduces a set of additional Adaptive Card properties and features for use in the context of Actionable Messages. Important. Outlook- ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Actually the latest is beta11 😀
Now it is working. Thank you guys.