Aracılığıyla paylaş


OutputCacheSection.EnableOutputCache Özellik

Tanım

Çıkış önbelleğinin etkinleştirilip etkinleştirilmediğini belirten bir değer alır veya ayarlar.

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

Özellik Değeri

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

Öznitelikler

Örnekler

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


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

Açıklamalar

EnableFragmentCache özelliği olarak falseayarlanırsa, @ OutputCache yönergesindeki ayarlardan veya sayfa tarafından kullanılan önbelleğe alma profilinden bağımsız olarak sunucuda hiçbir sayfa önbelleğe alınmaz. Daha fazla bilgi için OutputCacheSettingsSection ve OutputCacheProfile bölümlerine bakın.

Şunlara uygulanır

Ayrıca bkz.