Bagikan melalui


OutputCacheProfile.Duration Properti

Definisi

Mendapatkan atau mengatur durasi waktu di mana halaman atau kontrol di-cache.

public:
 property int Duration { int get(); void set(int value); };
[System.Configuration.ConfigurationProperty("duration", DefaultValue=-1)]
public int Duration { get; set; }
[<System.Configuration.ConfigurationProperty("duration", DefaultValue=-1)>]
member this.Duration : int with get, set
Public Property Duration As Integer

Nilai Properti

Durasi waktu dalam detik.

Atribut

Contoh

Contoh kode berikut menunjukkan cara menggunakan Duration properti .


// Get the current Duration.
Int32 durationValue = 
    outputCacheProfile.Duration;

// Set the Duration property to 0.
outputCacheProfile.Duration = 0;
  ' Get the current Duration.
  Dim durationValue As Int32 = _
  outputCacheProfile.Duration

  ' Set the Duration.
outputCacheProfile.Duration = 0

Keterangan

Duration menunjukkan waktu dalam detik bahwa halaman atau kontrol pengguna di-cache. Mengatur properti ini menetapkan kebijakan kedaluwarsa untuk respons HTTP dari halaman atau kontrol yang diterapkannya dan akan secara otomatis menyebabkan penembolokan output mereka.

Catatan

Duration harus ditentukan di profil atau direktif @ OutputCache halaman menggunakan profil.

Berlaku untuk

Lihat juga