OutputCacheSection.EnableOutputCache プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
出力キャッシュが有効かどうかを示す値を取得または設定します。
public:
property bool EnableOutputCache { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("enableOutputCache", DefaultValue=true)]
public bool EnableOutputCache { get; set; }
[<System.Configuration.ConfigurationProperty("enableOutputCache", DefaultValue=true)>]
member this.EnableOutputCache : bool with get, set
Public Property EnableOutputCache As Boolean
プロパティ値
出力キャッシュが有効な場合は true
。それ以外の場合は false
。 既定値は、true
です。
- 属性
例
次のコード例は、EnableOutputCache プロパティの使用方法を示しています。
// Get the current EnabledOutputCache.
Boolean enabledOutputCache =
outputCacheSection.EnableOutputCache;
// Set the EnabledOutputCache.
outputCacheSection.EnableOutputCache = false;
' Get the current EnabledOutputCache.
Dim enabledOutputCache As [Boolean] = _
outputCacheSection.EnableOutputCache
' Set the EnabledOutputCache.
outputCacheSection.EnableOutputCache = False
注釈
プロパティが EnableFragmentCache に false
設定されている場合、 @ OutputCache ディレクティブまたはページで使用されるキャッシュ プロファイルの設定に関係なく、ページはサーバーにキャッシュされません。 詳細については、次のトピックを参照してください。 OutputCacheSettingsSection および OutputCacheProfile
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET