HttpCachePolicy.SetVaryByCustom(String) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
指定自定义文本字符串,它用于改变已缓存的输出响应。
public:
void SetVaryByCustom(System::String ^ custom);
public void SetVaryByCustom (string custom);
member this.SetVaryByCustom : string -> unit
Public Sub SetVaryByCustom (custom As String)
参数
- custom
- String
用于改变已缓存的输出的文本字符串。
例外
custom
为 null
。
示例
下面的代码示例演示如何将自定义不同字符串设置为“Accept-Charset”,这会导致源服务器缓存根据浏览器的 Accept-Charset
标头选择多个缓存响应之一。
Response.Cache.SetVaryByCustom("Accept-Charset");
Response.Cache.SetVaryByCustom("Accept-Charset")
注解
SetVaryByCustom在 .NET Framework 版本 3.5 中引入。 有关详细信息,请参见版本和依赖关系。