OutputCacheProfile.NoStore 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
보조 스토리지를 사용하는지 여부를 나타내는 값을 가져오거나 설정합니다.
public:
property bool NoStore { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("noStore", DefaultValue=false)]
public bool NoStore { get; set; }
[<System.Configuration.ConfigurationProperty("noStore", DefaultValue=false)>]
member this.NoStore : bool with get, set
Public Property NoStore As Boolean
속성 값
보조 스토리지를 사용하면 true
이고, 그렇지 않으면 false
입니다. 기본값은 false
입니다.
- 특성
예제
다음 코드 예제에서는 NoStore 속성을 사용하는 방법을 보여 줍니다.
// Get the current NoStore.
Boolean noStoreValue =
outputCacheProfile.NoStore;
// Set the NoStore.
outputCacheProfile.NoStore = false;
' Get the current NoStore.
Dim noStoreValue As [Boolean] = _
outputCacheProfile.NoStore
' Set the NoStore property.
outputCacheProfile.NoStore = False
설명
OutputCacheProfile.NoStore 속성이 true
로 설정된 페이지는 중요한 정보의 보조 스토리지를 방지하기 위해 해당 헤더에 지정된 응답을 발급합니다.
이 특성을 설정 true
를 호출 하는 것과 같습니다는 HttpCachePolicy.SetNoStore 웹 요청 중 메서드.