HttpCacheVaryByParams.Item[String] 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置一个值,该值指示缓存是否随指定的 HTTP 请求参数而变化。
public:
property bool default[System::String ^] { bool get(System::String ^ header); void set(System::String ^ header, bool value); };
public bool this[string header] { get; set; }
member this.Item(string) : bool with get, set
Default Public Property Item(header As String) As Boolean
参数
- header
- String
自定义参数的名称。
属性值
如果缓存应该随指定的参数值而变化,则为 true
。
例外
header
为 null
。
示例
下面的代码示例演示如何 Item[] 从 HttpCachePolicy 与 HttpResponse关联的 对象访问索引器。
Response.Cache.SetExpires(DateTime.Now.AddSeconds(60));
Response.Cache.SetCacheability(HttpCacheability.Public);
Response.Cache.SetValidUntilExpires(false);
Response.Cache.VaryByParams["Category"] = true;
if (Response.Cache.VaryByParams["Category"])
{
//...
}
Response.Cache.SetExpires(DateTime.Now.AddSeconds(60))
Response.Cache.SetCacheability(HttpCacheability.Public)
Response.Cache.SetValidUntilExpires(False)
Response.Cache.VaryByParams("Category") = True
If Response.Cache.VaryByParams("Category") Then
'...
End If
注解
当用作访问器 (getter) 时, Item[] 如果在当前 parameters 集合中找到指定参数的值,或者如果集合设置为 * (星号) (指示所有参数),则索引器将返回 true
。
当用作 (setter) 的互变量时, Item[] 索引器将参数集合中与指定标头对应的参数的值设置为 true
。 可以指定值 *,该值指示所有参数。