如何在c#中获取HttpWebResponse的上次修改日期?

时间:2014-12-07 16:10:16

标签: c# http httpwebrequest httpwebresponse system.net.httpwebrequest

我正在尝试为Windows Phone 8.1创建图像缓存。为此,我需要读取HttpWebRequest的属性LastModified。我搜索谷歌,我发现this,不起作用。我有这段代码:

        HttpWebRequest webRequest = (HttpWebRequest)WebRequest.Create(imageFileUri);
        webRequest.Method="HEAD";
        HttpWebResponse webResponse =  ((HttpWebResponse)await webRequest.GetResponseAsync());

我需要做些什么才能得到约会?

1 个答案:

答案 0 :(得分:0)

调试找到了解决方案:

 var Date = myHttpWebResponse.Headers["Last-Modified"];

返回一个String,如:

     "Mon, 01 Dec 2014 20:00:31 GMT"