WinRT ViewModel DataBind to async method
问题 I am deserializing a list of objects from an XML file, and would like to bind to the actual content of those objects in my View, passing over a ViewModel. The problem is that file operations are async and this bubbles all the way up to the ViewModel, where Property getters cannot be marked as such... Problem I deserialize all XML files in a folder to Profile objects and store them in a List<Profile> . This method (has to be) marked async . public static async Task<List<Profile>>