共用方式為


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

屬性值

Int32

觸發應用程式定義域重新啟動之下一個變更告知之前的等待時間 (以秒為單位)。 預設值為 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 會超過在部署程式期間完成複本的時間長度。

注意

如果您在複製和部署程式之後立即檢視內容,可能會快取內容。 這是典型的行為。 當您指定的等候期間經過時,變更就會生效。

適用於

另請參閱