ControlCachePolicy.SetVaryByCustom(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.