OutputCacheProfile.NoStore 属性

定义

获取或设置一个值,该值指示是否启用辅助存储。

public:
 property bool NoStore { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("noStore", DefaultValue=false)]
public bool NoStore { get; set; }
[<System.Configuration.ConfigurationProperty("noStore", DefaultValue=false)>]
member this.NoStore : bool with get, set
Public Property NoStore As Boolean

属性值

Boolean

如果启用次要存储,则为 true;否则为 false。 默认值是 false

属性

示例

下面的代码示例说明如何使用 NoStore 属性。


// Get the current NoStore.
Boolean noStoreValue = 
    outputCacheProfile.NoStore;

// Set the NoStore.
outputCacheProfile.NoStore = false;
  ' Get the current NoStore.
  Dim noStoreValue As [Boolean] = _
  outputCacheProfile.NoStore

  ' Set the NoStore property.
outputCacheProfile.NoStore = False

注解

属性 OutputCacheProfile.NoStore 设置为 true 发出响应的页面,该响应在标头中指定以防止敏感信息的辅助存储。

将此属性设置为 true 等效于在 Web 请求期间调用 HttpCachePolicy.SetNoStore 方法。

适用于

另请参阅