I want to call non-blocking code in the void Page::OnNavigatingFrom(NavigatingCancelEventArgs const&) method in C++/WinRT.
In C#, I could simply use async void as shown in this answer, but as far as I understand, asynchronous methods need to return IAsyncAction (or one of the other interfaces) in order for me to be able to use co_await etc.
Does anybody know a way to call asynchronous methods in the aforementioned OnNavigatingFrom method or do I have to resort to calling them synchronously (using .get() I believe)?