Will caliburn.micro do the right thing with async method on ViewModel?
问题 As mentioned elsewhere, the new .NET async/await model propagates through layers of software like a virus. A recent async change has now bubbled up to my view model, and I am wondering if it is safe change declaration from public void DoStuff() to public async Task DoStuff() ? Thanks! 回答1: The support of asynchronous programming model in Caliburn.Micro is pretty good now. Few things you can do: Use async/await in Action method . Be careful, as action methods are technically event handlers,