Compartilhar via


HttpRuntimeSection.WaitChangeNotification Propriedade

Definição

Obtém ou define o tempo de espera antes da próxima notificação de alteração.

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

Valor da propriedade

Int32

O tempo de espera, em segundos, antes da próxima notificação de alteração que dispara um domínio do aplicativo a ser reiniciado. O valor padrão é 0.

Atributos

Exemplos

O exemplo a seguir mostra como usar a WaitChangeNotification propriedade.

// 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

Comentários

Um valor WaitChangeNotification sugerido excederia o período de tempo para concluir uma cópia durante o processo de implantação.

Observação

O conteúdo poderá aparecer em cache se você exibi-lo imediatamente após um processo de cópia e implantação. Esse é um comportamento típico. As alterações entrarão em vigor quando o período de espera especificado tiver decorrido.

Aplica-se a

Confira também