HttpRuntimeSection.WaitChangeNotification Property

Definition

Gets or sets the waiting time before the next change notification.

C#
[System.Configuration.ConfigurationProperty("waitChangeNotification", DefaultValue=0)]
[System.Configuration.IntegerValidator(MinValue=0)]
public int WaitChangeNotification { get; set; }

Property Value

The waiting time, in seconds, before the next change notification that triggers an application domain to restart. The default value is 0.

Attributes

Examples

The following example shows how to use the WaitChangeNotification property.

C#
// Get the WaitChangeNotification property value.
Response.Write("WaitChangeNotification: " +
  configSection.WaitChangeNotification + "<br>");

// Set the WaitChangeNotification property value to 10 seconds.
configSection.WaitChangeNotification = 10;

Remarks

A suggested value for WaitChangeNotification would exceed the length of time to complete a copy during the deployment process.

Note

The content might appear cached if you view it immediately after a copy and deploy process. This is typical behavior. The changes take effect when the wait period that you specified has elapsed.

Applies to

Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also