Exception when calling SuspensionManager.SaveAsync()
问题 I'm building a Windows 8 app and have come up with the following exception: SuspensionManager failed When running the following code: private async void OnSuspending(object sender, SuspendingEventArgs e) { var deferral = e.SuspendingOperation.GetDeferral(); await SuspensionManager.SaveAsync(); deferral.Complete(); } The exception occurs on the third line of the method, and it doesn't really give any detail. I've failed to find anything useful regarding this on the net. Has anyone seen this