다음을 통해 공유


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 배포 프로세스 중 복사를 완료 하는 시간 길이 초과 합니다.

참고

콘텐츠를 복사한 후 즉시 보기 및 프로세스를 배포 하는 경우 캐시 된 나타날 수 있습니다. 이 일반적인 동작입니다. 지정한 대기 시간 경과 변경 내용이 적용 됩니다.

적용 대상

추가 정보