在我的 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\"");
}
用户只需单击打开通知页面的菜单,然后立即按下手机的开始按钮即可停用该应用程序。当用户从开始菜单单击应用程序磁贴时,将引发异常。
有什么解决办法吗?停用空闲模式检测会起作用吗?