HttpResponse.CacheControl 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置与 HttpCacheability 枚举值之一匹配的 Cache-Control
HTTP 标头。
public:
property System::String ^ CacheControl { System::String ^ get(); void set(System::String ^ value); };
public string CacheControl { get; set; }
member this.CacheControl : string with get, set
Public Property CacheControl As String
属性值
HttpCacheability 枚举值的字符串表示形式。
例外
设置的字符串值与 HttpCacheability 枚举值之一不匹配。
注解
Private``Public
值,并且No-Cache
是字符串,必须用引号 (“) 括起来。 如果属性 CacheControl 设置为与枚举值之一 HttpCacheability 不匹配的值,则会引发一个 ArgumentException 值。 如果未设置该 CacheControl 属性,则响应的可缓存性设置为 NoCache。
Expires已弃用属性CacheControl
和ExpiresAbsolute属性。 相反,类的方法HttpCachePolicy可通过Cache内部对象访问,以控制Internet Information Services (IIS) 输出缓存和客户端缓存。