5

我正在构建一个 Windows 8 应用程序并提出了以下异常:

暂停管理器失败

运行以下代码时:

private async void OnSuspending(object sender, SuspendingEventArgs e)
{
    var deferral = e.SuspendingOperation.GetDeferral();
    await SuspensionManager.SaveAsync();
    deferral.Complete();
}

异常发生在方法的第三行,它并没有真正提供任何细节。

我没有在网上找到任何有用的信息。有没有人见过这个?

//编辑

这可能与我使用dynamicWindows 8 Facebook SDK 的类型变量有关。

dynamic不允许使用变量吗?

//编辑2

下面是dynamic变量的用法:

dynamic result = await FB.GetTaskAsync("fql", parameters);
if (result.data.Count > 0)
{
    return result.data[0].src_big as string;
}

以及异常的调用堆栈:

mscorlib.dll!System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(System.Threading.Tasks.Task task) + 0x5e bytes  
mscorlib.dll!System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(System.Threading.Tasks.Task task) + 0x35 bytes 
mscorlib.dll!System.Runtime.CompilerServices.TaskAwaiter.GetResult() + 0x16 bytes   
FacebookRandomizer.exe!FacebookRandomizer.App.OnSuspending(object sender, Windows.ApplicationModel.SuspendingEventArgs e) Line 86 + 0xa5 bytes  C#
[Native to Managed Transition]  

前三个是外部代码,第四个是我在App.xaml.cs中的方法。

4

2 回答 2

2

找到了答案,这完全与 Facebook-sdk 无关。

我在暂停时将位图图像保存在 pageState 中,显然这不起作用。

这是旧代码:

BitmapImage img = RandomImage.ImageSource as BitmapImage;
pageState["currentImage"] = img;

和新的:

BitmapImage img = RandomImage.ImageSource as BitmapImage;
Uri uriSource = img.UriSource;
pageState["currentImage"] = uriSource;
于 2012-11-26T18:25:30.070 回答
1

我能够通过确保我有可序列化的类型(在我的例子中是简单的视图模型类)来解决这个问题。然后在项目的App构造函数中Shared,确保SuspensionManager知道我的类型。标准的内置序列化程序完成了他们的工作,我完成了。

    public App() {
        // ... existing code ...
        SuspensionManager.KnownTypes.Add(typeof(TypeOne));
        SuspensionManager.KnownTypes.Add(typeof(TypeTwo));
    }
于 2014-08-25T05:07:14.327 回答