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

属性值

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设置相同。

适用于

另请参阅