ControlCachePolicy.SetVaryByCustom(String) Method

Definition

Sets a list of custom strings that the output cache will use to vary the user control.

public:
 void SetVaryByCustom(System::String ^ varyByCustom);
public void SetVaryByCustom (string varyByCustom);
member this.SetVaryByCustom : string -> unit
Public Sub SetVaryByCustom (varyByCustom As String)

Parameters

varyByCustom
String

The list of custom strings.

Exceptions

The user control is not associated with a BasePartialCachingControl and is not cacheable.

Remarks

If you pass "browser" as the varyByCustom parameter, the user control will be varied by browser type and major version number. If another custom string is entered, you must override the GetVaryByCustomString method in your application's Global.asax file.

Applies to

See also