HttpRuntimeSection.MaxWaitChangeNotification 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 l'intervallo di tempo che trascorre tra la prima notifica di modifica e il momento in cui viene riavviato il dominio dell'applicazione.
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
Valore della proprietà
Intervallo di tempo massimo in secondi tra la prima notifica di modifica e il momento in cui viene riavviato il dominio dell'applicazione.
- Attributi
Esempio
Nell'esempio seguente viene illustrato come utilizzare la proprietà 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
Commenti
Un valore suggerito per la MaxWaitChangeNotification proprietà supera il tempo di completamento di 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. Questo è il comportamento tipico. Le modifiche hanno effetto quando il periodo di attesa specificato è trascorso.