OutputCacheSettingsSection.OutputCacheProfiles 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.
OutputCacheProfileCollectionMendapatkan .
public:
property System::Web::Configuration::OutputCacheProfileCollection ^ OutputCacheProfiles { System::Web::Configuration::OutputCacheProfileCollection ^ get(); };
[System.Configuration.ConfigurationProperty("outputCacheProfiles")]
public System.Web.Configuration.OutputCacheProfileCollection OutputCacheProfiles { get; }
[<System.Configuration.ConfigurationProperty("outputCacheProfiles")>]
member this.OutputCacheProfiles : System.Web.Configuration.OutputCacheProfileCollection
Public ReadOnly Property OutputCacheProfiles As OutputCacheProfileCollection
Nilai Properti
Sebuah OutputCacheProfileCollectionOutputCacheProfile objek.
- Atribut
Contoh
Contoh kode berikut menunjukkan cara menggunakan OutputCacheProfiles properti .
// Get the current OutputCacheProfiles property value.
OutputCacheProfileCollection outputCacheProfilesValue =
outputCacheSettings.OutputCacheProfiles;
' Get the current OutputCacheProfiles property value.
Dim outputCacheProfilesValue _
As OutputCacheProfileCollection = _
outputCacheSettings.OutputCacheProfiles
Keterangan
Properti OutputCacheProfiles memungkinkan Anda untuk mengakses outputCacheProfiles
elemen secara terprogram dalam file konfigurasi. Anda dapat menggunakan OutputCacheProfiles properti untuk memodifikasi outputCacheProfiles
elemen secara terprogram.
Bagian berisi outputCacheProfiles
OutputCacheProfile objek yang mewakili pengaturan cache output yang dapat digunakan oleh halaman dalam aplikasi. Pengaturan ini dapat diterapkan ke halaman dengan mengatur CacheProfile
atribut direktif @ OutputCache . Terapkan profil untuk mengontrol atribut penembolokan seperti dependensi, lokasi cache, dan waktu kedaluwarsa cache.
Arahan @ OutputCache dapat mengambil alih semua pengaturan yang dimuat oleh kecuali OutputCacheProfileEnabled properti . Ini untuk memastikan Anda dapat mengaktifkan atau menonaktifkan OutputCacheProfile tanpa harus memodifikasi arahan di semua halaman yang mungkin telah menimpanya.