OutputCacheProfile.Duration 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
페이지 또는 컨트롤이 캐시되는 기간을 가져오거나 설정합니다.
public:
property int Duration { int get(); void set(int value); };
[System.Configuration.ConfigurationProperty("duration", DefaultValue=-1)]
public int Duration { get; set; }
[<System.Configuration.ConfigurationProperty("duration", DefaultValue=-1)>]
member this.Duration : int with get, set
Public Property Duration As Integer
속성 값
기간을 나타내는 시간(초)입니다.
- 특성
예제
다음 코드 예제에서는 Duration 속성을 사용하는 방법을 보여 줍니다.
// Get the current Duration.
Int32 durationValue =
outputCacheProfile.Duration;
// Set the Duration property to 0.
outputCacheProfile.Duration = 0;
' Get the current Duration.
Dim durationValue As Int32 = _
outputCacheProfile.Duration
' Set the Duration.
outputCacheProfile.Duration = 0
설명
Duration 페이지나 사용자 정의 컨트롤이 캐시 되는 초 단위로 시간을 나타냅니다. 이 속성을 설정 페이지 또는 컨트롤을 적용 하 고 출력 캐시 하면 자동으로의 HTTP 응답에 대 한 만료 정책을 설정 합니다.
참고
은 Duration 프로필을 사용하여 페이지의 프로필 또는 @ OutputCache
지시문에 정의되어야 합니다.
적용 대상
추가 정보
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET