次の方法で共有


OutputCacheProfile.Enabled プロパティ

定義

キャッシングが有効かどうかを示す値を取得または設定します。

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

プロパティ値

キャッシングを有効にする場合は true。それ以外の場合は false。 既定値は false です。

属性

次のコード例は、Enabled プロパティの使用方法を示しています。


 // Get the current Enabled.
Boolean enabledValue = 
    outputCacheProfile.Enabled;

 // Set the Enabled.
 outputCacheProfile.Enabled = 
     false;
    ' Get the current Enabled property.
    Dim enabledValue As [Boolean] = _
    outputCacheProfile.Enabled
  
    ' Set the Enabled property.
outputCacheProfile.Enabled = False

注釈

プロパティを Enabled 使用すると、キャッシュ メカニズムを 1 か所でのみ有効または無効にできます。 この OutputCacheProfileを使用するすべてのページまたはコントロールに影響します。

適用対象

こちらもご覧ください