我正在使用Windows Phone的Async CTP库。有谁知道如何取消待处理的网络请求?
Request = (HttpWebRequest)WebRequest.Create(url);
Request.Credentials = new NetworkCredential(_settings.Username, _settings.Password);
WebResponse resp;
try
{
resp = await Request.GetResponseAsync();
}
没有取消令牌(在ASYNC Ctp tap document中指定)。
答案 0 :(得分:5)
您可以尝试拨打Request.Abort()
。