OutputCacheSection.SendCacheControlHeader 属性

定义

获取或设置一个值,该值指示默认情况下 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 默认情况下不会发送 标头。

注意

默认情况下,此设置允许在客户端上缓存内容。

适用于

另请参阅