다음을 통해 공유


OutputCacheProfile.VaryByControl 속성

정의

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

속성 값

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 사용하는 것과 동일합니다.

적용 대상

추가 정보