HttpRuntimeSection.WaitChangeNotification Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient ou définit la durée d'attente avant la notification de modification suivante.
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
Valeur de propriété
Durée d'attente, en secondes, avant la notification de modification suivante qui déclenche le redémarrage d'un domaine d'application. La valeur par défaut est 0.
- Attributs
Exemples
L'exemple suivant indique comment utiliser la propriété 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
Remarques
Une valeur suggérée pour WaitChangeNotification dépasserait la durée d’exécution d’une copie pendant le processus de déploiement.
Notes
Le contenu peut apparaître mis en cache si vous l’affichez immédiatement après un processus de copie et de déploiement. Il s’agit d’un comportement classique. Les modifications prennent effet lorsque la période d’attente que vous avez spécifiée s’est écoulée.