Aracılığıyla paylaş


OutputCacheSection.EnableFragmentCache Özellik

Tanım

Parça önbelleğinin etkinleştirilip etkinleştirilmediğini belirten bir değer alır veya ayarlar.

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

Özellik Değeri

true parça önbelleği etkinleştirildiyse; aksi takdirde , false. Varsayılan değer: true.

Öznitelikler

Örnekler

Aşağıdaki kod örneği özelliğinin EnableFragmentCache nasıl kullanılacağını gösterir.


// 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

Açıklamalar

EnableFragmentCache özelliği olarak falseayarlanırsa, @ OutputCache yönergesine veya kullanılan önbelleğe alma profiline bakılmaksızın hiçbir kullanıcı denetimi çıkışı önbelleğe alınmaz. Daha fazla bilgi için OutputCacheSettingsSection ve OutputCacheProfile bölümlerine bakın.

Şunlara uygulanır

Ayrıca bkz.