HttpRuntimeSection.WaitChangeNotification 属性

定义

获取或设置下一次更改通知前的等待时间。

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

属性值

下一次触发应用程序域重新启动的更改通知前的等待时间(以秒为单位)。 默认值为 0。

属性

示例

下面的示例演示如何使用 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

注解

的建议值 WaitChangeNotification 将超过在部署过程中完成复制的时间长度。

注意

如果在复制和部署过程后立即查看内容,则内容可能会显示为缓存。 这是典型行为。 这些更改在指定的等待期已过时生效。

适用于

另请参阅