OutputCacheSection.SendCacheControlHeader 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置一个值,该值指示默认情况下 cache-control:private
标头是否由输出缓存模块发送。
public:
property bool SendCacheControlHeader { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("sendCacheControlHeader", DefaultValue=true)]
public bool SendCacheControlHeader { get; set; }
[<System.Configuration.ConfigurationProperty("sendCacheControlHeader", DefaultValue=true)>]
member this.SendCacheControlHeader : bool with get, set
Public Property SendCacheControlHeader As Boolean
属性值
如果启用 true
标头的发送,则为 cache-control:private
;否则为 false
。 默认值为 true
。
- 属性
示例
下面的代码示例说明如何使用 SendCacheControlHeader 属性。
// Get the current SendCacheControlHeader.
Boolean sendCacheControlHeaderValue =
outputCacheSection.SendCacheControlHeader;
// Set the SendCacheControlHeader.
outputCacheSection.SendCacheControlHeader = false;
' Get the current SendCacheControlHeader.
Dim sendCacheControlHeaderValue As [Boolean] = _
outputCacheSection.SendCacheControlHeader
' Set the SendCacheControlHeader.
outputCacheSection.SendCacheControlHeader = False
注解
SendCacheControlHeader适用于未指定输出缓存的内容。 当它设置为 false
时, cache-control:private
默认情况下不会发送 标头。
注意
默认情况下,此设置允许在客户端上缓存内容。