Quick question - how do I call async methods from within a Prism event aggregator subscriber action? E.g.
_eventAggregator.GetEvent<PubSubEvent<SomeMessage>>()
.Subscribe((msg) => {
DoSomething();
await DoSomethingAsync();
DoSomethingElse();
});
asyncin front of your lambda e.g.async (msg) => { ... }, butSubscribewon't wait for it to complete.