我有一个看起来像这样的课程:
using System.Collections.Generic;
using System.Web.Caching;
public static class MyCache
{
private static string cacheKey = "mykey";
public static Dictionary<string, bool> GetCacheValue(bool bypassCache)
{
var settings = Cache[cacheKey] as Dictionary<string, bool>; // error on this line
// ...etc...
return settings
}
}
我遇到的问题是这不会编译。编译器说Cache
不能像我那样使用。这是消息:
'System.Web.Caching.Cache' is a 'type' but is used like a 'variable'
这让我感到困惑。我搜索了ASP.NET缓存API,并发现了许多Cache
以这种方式使用的示例。以下是其中一个例子:
// http://www.4guysfromrolla.com/articles/100902-1.aspx
value = Cache("key")
- or -
value = Cache.Get("key")
当我尝试使用Cache.Get()
时,我得到另一个错误,说它不是静态方法。
显然我需要初始化Cache
的实例。这是使用此API的正确方法吗?后续问题是,缓存信息是否会在实例中持续存在?
感谢您的帮助。
答案 0 :(得分:23)
System.Web.Caching.Cache
是一个类 - 您会看到人们使用名为Cache
的属性,该属性是System.Web.Caching.Cache
的实例。如果您在提供Cache
属性的类之外使用它,请使用System.Web.HttpRuntime.Cache
访问它:
var settings = System.Web.HttpRuntime.Cache[cacheKey] as Dictionary<string, bool>;