OutputCacheProfile.Enabled Properti
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Mendapatkan atau menetapkan nilai yang menunjukkan apakah penembolokan diaktifkan.
public:
property bool Enabled { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("enabled", DefaultValue=true)]
public bool Enabled { get; set; }
[<System.Configuration.ConfigurationProperty("enabled", DefaultValue=true)>]
member this.Enabled : bool with get, set
Public Property Enabled As Boolean
Nilai Properti
true
jika penembolokan diaktifkan; jika tidak, false
. Nilai defaultnya adalah false
.
- Atribut
Contoh
Contoh kode berikut menunjukkan cara menggunakan Enabled properti .
// Get the current Enabled.
Boolean enabledValue =
outputCacheProfile.Enabled;
// Set the Enabled.
outputCacheProfile.Enabled =
false;
' Get the current Enabled property.
Dim enabledValue As [Boolean] = _
outputCacheProfile.Enabled
' Set the Enabled property.
outputCacheProfile.Enabled = False
Keterangan
Properti Enabled memungkinkan pengaktifan atau penonaktifan mekanisme penembolokan di satu tempat saja. Ini mempengaruhi semua halaman atau kontrol yang menggunakan ini OutputCacheProfile.