Aracılığıyla paylaş


HttpRuntimeSection.MaxWaitChangeNotification Özellik

Tanım

İlk değişiklik bildirimi ile uygulama etki alanının yeniden başlatıldığı saat arasındaki zaman aralığını alır veya ayarlar.

public:
 property int MaxWaitChangeNotification { int get(); void set(int value); };
[System.Configuration.ConfigurationProperty("maxWaitChangeNotification", DefaultValue=0)]
[System.Configuration.IntegerValidator(MinValue=0)]
public int MaxWaitChangeNotification { get; set; }
[<System.Configuration.ConfigurationProperty("maxWaitChangeNotification", DefaultValue=0)>]
[<System.Configuration.IntegerValidator(MinValue=0)>]
member this.MaxWaitChangeNotification : int with get, set
Public Property MaxWaitChangeNotification As Integer

Özellik Değeri

Int32

İlk değişiklik bildiriminden ve uygulama etki alanının yeniden başlatıldığından saniye cinsinden maksimum zaman aralığı.

Öznitelikler

Örnekler

Aşağıdaki örnekte özelliğinin nasıl kullanılacağı gösterilmektedir MaxWaitChangeNotification .

// Get the current MaxWaitChangeNotification property value.
Response.Write("MaxWaitChangeNotification: " +
  configSection.MaxWaitChangeNotification + "<br>");

// Set the MaxWaitChangeNotification property value to 10 seconds.
configSection.MaxWaitChangeNotification = 10;
' Get the current MaxWaitChangeNotification property value.
Response.Write("MaxWaitChangeNotification: " & _
  configSection.MaxWaitChangeNotification & "<br>")

' Set the MaxWaitChangeNotification property value to 10 seconds.
configSection.MaxWaitChangeNotification = 10

Açıklamalar

Özellik için MaxWaitChangeNotification önerilen bir değer, dağıtım işlemi sırasında bir kopyanın tamamlanması için gereken süreyi aşıyor olabilir.

Not

İçerik, kopyalama ve dağıtma işleminden hemen sonra görüntülediğinizde önbelleğe alınmış olarak görünebilir. Bu tipik bir davranıştır. Belirttiğiniz bekleme süresi sona erdiğinde değişiklikler geçerli olur.

Şunlara uygulanır

Ayrıca bkz.