HttpCachePolicy.SetVaryByCustom(String) 方法

定义

指定自定义文本字符串,它用于改变已缓存的输出响应。

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

参数

custom
String

用于改变已缓存的输出的文本字符串。

例外

customnull

示例

下面的代码示例演示如何将自定义不同字符串设置为“Accept-Charset”,这会导致源服务器缓存根据浏览器的 Accept-Charset 标头选择多个缓存响应之一。

Response.Cache.SetVaryByCustom("Accept-Charset");
Response.Cache.SetVaryByCustom("Accept-Charset")

注解

SetVaryByCustom在 .NET Framework 版本 3.5 中引入。 有关详细信息,请参见版本和依赖关系

适用于