Bagikan melalui


OutputCacheSettingsSection.OutputCacheProfiles Properti

Definisi

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 outputCacheProfilesOutputCacheProfile 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.

Berlaku untuk

Lihat juga