HttpCachePolicy.SetLastModified(DateTime) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将 Last-Modified
HTTP 标头设置为提供的 DateTime 值。
public:
void SetLastModified(DateTime date);
public void SetLastModified (DateTime date);
member this.SetLastModified : DateTime -> unit
Public Sub SetLastModified (date As DateTime)
参数
例外
date
晚于当前 DateTime
。
示例
下面的代码示例演示如何将 Last-Modified
标头设置为新日期。
Response.Cache.SetLastModified(DateTime.Parse("1/1/2001 00:00:01AM"));
Response.Cache.SetLastModified(DateTime.Parse("1/1/2001 00:00:01AM"))
注解
Last-Modified
HTTP 标头时间戳会标记文档,其中包含DateTime
指示上次修改文档的时间的值。
如果违反缓存限制性层次结构,此方法将失败。
SetLastModified在 .NET Framework 版本 3.5 中引入。 有关详细信息,请参见版本和依赖关系。