HttpRuntimeSection.WaitChangeNotification Eigenschaft
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Ruft die Wartezeit vor der nächsten Änderungsbenachrichtigung ab oder legt diese fest.
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
Eigenschaftswert
Die Wartezeit vor der nächsten Änderungsbenachrichtigung in Sekunden, die einen Neustart der Anwendungsdomäne auslöst. Der Standardwert ist 0.
- Attribute
Beispiele
Im folgenden Beispiel wird die Verwendung der WaitChangeNotification-Eigenschaft veranschaulicht.
// 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
Hinweise
Ein vorgeschlagener Wert für WaitChangeNotification würde die Zeitspanne zum Abschließen einer Kopie während des Bereitstellungsprozesses überschreiten.
Hinweis
Der Inhalt wird möglicherweise zwischengespeichert angezeigt, wenn Sie ihn unmittelbar nach einem Kopier- und Bereitstellungsprozess anzeigen. Dies ist ein typisches Verhalten. Die Änderungen werden wirksam, wenn die von Ihnen angegebene Wartezeit abgelaufen ist.