Aracılığıyla paylaş


HttpRuntimeSection.WaitChangeNotification Özellik

Tanım

Bir sonraki değişiklik bildiriminden önce bekleme süresini alır veya ayarlar.

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

Özellik Değeri

Bir uygulama etki alanını yeniden başlatmak üzere tetikleyen bir sonraki değişiklik bildiriminden önce saniye cinsinden bekleme süresi. Varsayılan değer 0’dır.

Öznitelikler

Örnekler

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

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

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

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

Açıklamalar

için WaitChangeNotification ö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, bir kopya ve dağıtım 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çerlilik kazanır.

Şunlara uygulanır

Ayrıca bkz.