次の方法で共有


OutputCacheSection.EnableFragmentCache プロパティ

定義

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

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

注釈

プロパティが EnableFragmentCachefalse設定されている場合、 @ OutputCache ディレクティブまたは使用されるキャッシュ プロファイルに関係なく、ユーザー コントロールの出力はキャッシュされません。 詳細については、次のトピックを参照してください。 OutputCacheSettingsSection および OutputCacheProfile

適用対象

こちらもご覧ください