다음을 통해 공유


OutputCacheProfile.NoStore 속성

정의

보조 스토리지를 사용하는지 여부를 나타내는 값을 가져오거나 설정합니다.

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

속성 값

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 웹 요청 중 메서드.

적용 대상

추가 정보