访问Windows Phone 8.0上的Last-Modified HTTP响应标头

时间:2014-11-14 15:22:12

标签: silverlight windows-phone-8 http-headers

我正在尝试发出HEAD请求并从响应中读取Last-Modified标头。 到目前为止,我一直在使用HttpClient来完成我的所有异步服务器通信,这种通信工作正常,但出于某些原因HttpResponseMessageHeaders似乎不包含Last-Modified响应头,即使服务器确实返回它。

如何在Windows Phone 8.0中访问Last-Modified响应标头?

1 个答案:

答案 0 :(得分:0)

如果您要查找正在下载的文件的Last-Modified,请查看

HttpClient hc = new HttpClient();
var reponse = await hc.GetAsync("http://www.chubosaurus.com/dogecoin_wp8.jpg");

然后看看

reponse.Content.Headers.LastModified

enter image description here