HttpResponse.CacheControl 属性

定义

获取或设置与 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

属性值

String

HttpCacheability 枚举值的字符串表示形式。

例外

设置的字符串值与 HttpCacheability 枚举值之一不匹配。

注解

Private``Public值,并且No-Cache是字符串,必须用引号 (“) 括起来。 如果属性 CacheControl 设置为与枚举值之一 HttpCacheability 不匹配的值,则会引发一个 ArgumentException 值。 如果未设置该 CacheControl 属性,则响应的可缓存性设置为 NoCache

Expires已弃用属性CacheControlExpiresAbsolute属性。 相反,类的方法HttpCachePolicy可通过Cache内部对象访问,以控制Internet Information Services (IIS) 输出缓存和客户端缓存。

适用于