다음을 통해 공유


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

참고

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

적용 대상

추가 정보