共用方式為


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

屬性值

如果啟用次要儲存區,則為 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 方法。

適用於

另請參閱