0

在我的 windows phone 8 应用程序中,我使用异步方法从服务器检索数据。

在实现Fast App Resume功能后,我又遇到了另一个问题。从服务器检索数据的异步方法在System.Net.WebException恢复时会抛出类型异常。

重现问题的步骤是当应用程序通过异步方法加载数据时,您只需点击开始按钮。

例如,我有一个加载用户通知的页面。我调用了async void GetNotifications()进一步调用下面方法来检索响应字符串的方法。

    public async Task<string> Get(string URL)
    {
        var request = WebRequest.Create(new Uri(URL)) as HttpWebRequest;

        if (APIHelper.APIHandshake != null)
            request.Headers["Cookie"] = "ii=" + APIHelper.APIHandshake.Sid + ";";

        return await httpRequest(request);
    } 

下面给出httprequest方法的实现。

    private async Task<string> httpRequest(HttpWebRequest request)
    {
        string received;

        using (var response = (HttpWebResponse)(await Task<WebResponse>.Factory
            .FromAsync(request.BeginGetResponse, request.EndGetResponse, null)))
        {
            using (var responseStream = response.GetResponseStream())
            {
                using (var sr = new StreamReader(responseStream))
                {
                    //cookieJar = request.CookieContainer;
                    //responseCookies = response.Cookies;
                    received = await sr.ReadToEndAsync();
                }
            }
        }

        return received.Replace("[{}]", "[]")
                .Replace("[{},{}]", "[]")
                .Replace("\"subcat_id\":\"\"", "\"subcat_id\":\"0\"");
    }

用户只需单击打开通知页面的菜单,然后立即按下手机的开始按钮即可停用该应用程序。当用户从开始菜单单击应用程序磁贴时,将引发异常。

有什么解决办法吗?停用空闲模式检测会起作用吗?

4

1 回答 1

0

这可能不是最好的解决方案,但可以通过在 app.xaml.cs 页面上的 InitalizePhoneApplication() 方法中添加这行代码来取消异步请求。

PhoneApplicationService.Current.ApplicationIdleDetectionMode = IdleDetectionMode.Disabled;

在此处 阅读有关此属性的更多信息
测试它,它应该可以解决问题,但我并没有假装这是最好的做法......

于 2014-03-13T11:18:00.747 回答