OutputCacheSection.EnableOutputCache Özellik
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Çı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 false
ayarlanı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.