HttpRuntimeSection.WaitChangeNotification Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene o imposta il tempo di attesa che deve trascorrere prima della successiva notifica di modifica.
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
Valore della proprietà
Tempo di attesa, espresso in secondi, prima della successiva notifica di modifica che attiva il riavvio del dominio dell'applicazione. Il valore predefinito è 0.
- Attributi
Esempio
Nell'esempio seguente viene illustrato come utilizzare la proprietà 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
Commenti
Un valore consigliato per WaitChangeNotification supera il periodo di tempo necessario per completare una copia durante il processo di distribuzione.
Nota
Il contenuto potrebbe essere memorizzato nella cache se viene visualizzato immediatamente dopo un processo di copia e distribuzione. Si tratta di un comportamento tipico. Le modifiche diventano effettive quando è trascorso il periodo di attesa specificato.