HttpRuntimeSection.MaxWaitChangeNotification 属性

定义

获取或设置从第一次更改通知到应用程序域重新启动之间的时间间隔。

public:
 property int MaxWaitChangeNotification { int get(); void set(int value); };
[System.Configuration.ConfigurationProperty("maxWaitChangeNotification", DefaultValue=0)]
[System.Configuration.IntegerValidator(MinValue=0)]
public int MaxWaitChangeNotification { get; set; }
[<System.Configuration.ConfigurationProperty("maxWaitChangeNotification", DefaultValue=0)>]
[<System.Configuration.IntegerValidator(MinValue=0)>]
member this.MaxWaitChangeNotification : int with get, set
Public Property MaxWaitChangeNotification As Integer

属性值

Int32

从第一次更改通知到应用程序域重新启动之间的最大时间间隔(以秒为单位)。

属性

示例

下面的示例演示如何使用 MaxWaitChangeNotification 属性。

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

// Set the MaxWaitChangeNotification property value to 10 seconds.
configSection.MaxWaitChangeNotification = 10;
' Get the current MaxWaitChangeNotification property value.
Response.Write("MaxWaitChangeNotification: " & _
  configSection.MaxWaitChangeNotification & "<br>")

' Set the MaxWaitChangeNotification property value to 10 seconds.
configSection.MaxWaitChangeNotification = 10

注解

属性的建议值 MaxWaitChangeNotification 将超过在部署过程中完成副本所需的时间长度。

备注

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

适用于

另请参阅