OutputCacheProfile.VaryByControl 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
VaryByControl 속성을 가져오거나 설정합니다.
public:
property System::String ^ VaryByControl { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("varyByControl")]
public string VaryByControl { get; set; }
[<System.Configuration.ConfigurationProperty("varyByControl")>]
member this.VaryByControl : string with get, set
Public Property VaryByControl As String
속성 값
VaryByControl 값입니다.
- 특성
예제
다음 코드 예제에서는 VaryByControl 속성을 사용하는 방법을 보여 줍니다.
// Get the current VaryByControl.
String varyByControlValue =
outputCacheProfile.VaryByControl;
// Set the VaryByControl.
outputCacheProfile.VaryByControl =
string.Empty;
' Get the current VaryByControl.
Dim varyByControlValue As String = _
outputCacheProfile.VaryByControl
' Set the VaryByControl.
outputCacheProfile.VaryByControl = _
String.Empty
설명
VaryByControl 는 세미콜론으로 구분 된 집합을 캐시 하도록 컨트롤의 Id입니다.
자세한 내용은 캐싱 여러 버전의 사용자 정의 컨트롤 출력합니다.
참고
설정은 VaryByControl 지시문의 @ OutputCache
특성에서 VaryByControl
사용하는 것과 동일합니다.