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 배포 프로세스 중에 복사본을 완료하는 데 걸리는 시간을 초과합니다.
메모
복사 및 배포 프로세스 직후에 콘텐츠를 보는 경우 콘텐츠가 캐시된 것처럼 보일 수 있습니다. 일반적인 동작입니다. 변경 내용은 지정한 대기 기간이 경과된 경우에 적용됩니다.