HttpRuntimeSection.MaxWaitChangeNotification 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
첫 번째 변경 알림이 발생한 후 애플리케이션 도메인이 다시 시작될 때까지의 시간 간격을 가져오거나 설정합니다.
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
속성 값
첫 번째 변경 알림이 발생한 후 애플리케이션 도메인이 다시 시작될 때까지의 최대 시간 간격(초)입니다.
- 특성
예제
다음 예제에서는 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 속성 배포 프로세스 중 복사를 완료 하는 시간 길이 초과 합니다.
참고
콘텐츠 복사 및 배포 프로세스를 바로 뒤에 보면 캐시 나타날 수 있습니다. 이 일반적인 동작입니다. 지정한 대기 시간 경과 변경 내용이 적용 됩니다.