我正在尝试为Windows Phone 8.1创建图像缓存。为此,我需要读取HttpWebRequest的属性LastModified。我搜索谷歌,我发现this,不起作用。我有这段代码:
HttpWebRequest webRequest = (HttpWebRequest)WebRequest.Create(imageFileUri);
webRequest.Method="HEAD";
HttpWebResponse webResponse = ((HttpWebResponse)await webRequest.GetResponseAsync());
我需要做些什么才能得到约会?
答案 0 :(得分:0)
调试找到了解决方案:
var Date = myHttpWebResponse.Headers["Last-Modified"];
返回一个String,如:
"Mon, 01 Dec 2014 20:00:31 GMT"