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