HttpRuntimeSection.MaxWaitChangeNotification Property

Definition

Gets or sets the time interval between the first change notification and the time at which the application domain is restarted.

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

Property Value

The maximum time interval, in seconds, from the first change notification and the time when the application domain is restarted.

Attributes

Examples

The following example shows how to use the MaxWaitChangeNotification property.

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

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

Remarks

A suggested value for the MaxWaitChangeNotification property 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