HttpApplication.GetVaryByCustomString(HttpContext, String) 方法

定义

提供 VaryByCustom 属性在整个应用程序范围内的实现。

public:
 virtual System::String ^ GetVaryByCustomString(System::Web::HttpContext ^ context, System::String ^ custom);
public virtual string GetVaryByCustomString (System.Web.HttpContext context, string custom);
abstract member GetVaryByCustomString : System.Web.HttpContext * string -> string
override this.GetVaryByCustomString : System.Web.HttpContext * string -> string
Public Overridable Function GetVaryByCustomString (context As HttpContext, custom As String) As String

参数

context
HttpContext

一个 HttpContext 对象,包含有关当前 Web 请求的信息。

custom
String

自定义字符串,它指定哪个缓存的响应被用于响应当前请求。

返回

如果 custom 参数的值为 "browser",则为浏览器的 Type;否则为 null

注解

可以重写 GetVaryByCustomString 以添加新方法,用于计算基于当前请求的自定义差值。 实现必须调用它无法识别的自定义值的基类。 有关详细信息,请参阅 如何:使用自定义字符串缓存页面的版本

适用于

另请参阅