Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[UWP] AdaptiveActionInvoker IDL missing non-default ctor #6681

Closed
paulcam206 opened this issue Nov 3, 2021 · 0 comments · Fixed by #6911
Closed

[UWP] AdaptiveActionInvoker IDL missing non-default ctor #6681

paulcam206 opened this issue Nov 3, 2021 · 0 comments · Fixed by #6911
Assignees

Comments

@paulcam206
Copy link
Member

AdaptiveActionInvoker has an incomplete IDL definition:

runtimeclass AdaptiveActionInvoker
{
AdaptiveActionInvoker();
void SendActionEvent(AdaptiveCards.ObjectModel.Uwp.IAdaptiveActionElement actionElement);
};

It's missing the constructor that takes a RenderedAdaptiveCard:

HRESULT RuntimeClassInitialize(_In_ AdaptiveCards::Rendering::Uwp::RenderedAdaptiveCard* renderResult) noexcept;

Ultimately, I think this means that AdaptiveActionInvoker isn't usable out of the box, but that shoul dbe investigated as well...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment