是否有可能获得到期DateTime
的的HttpRuntime.Cache
对象?
如果是这样,最好的方法是什么?
我刚刚通过反射器中的System.Web.Caching.Cache.似乎涉及到期日的所有内容都标记为内部.我发现公共访问它的唯一地方是通过Cache.Add和Cache.Insert方法.
所以看起来你运气不好,除非你想通过反思,除非你真的需要那个约会,否则我不建议.
但是如果你想要这样做,那么这里有一些代码可以解决这个问题:
private DateTime GetCacheUtcExpiryDateTime(string cacheKey) { object cacheEntry = Cache.GetType().GetMethod("Get", BindingFlags.Instance | BindingFlags.NonPublic).Invoke(Cache, new object[] { cacheKey, 1 }); PropertyInfo utcExpiresProperty = cacheEntry.GetType().GetProperty("UtcExpires", BindingFlags.NonPublic | BindingFlags.Instance); DateTime utcExpiresValue = (DateTime)utcExpiresProperty.GetValue(cacheEntry, null); return utcExpiresValue; }
从.NET 4.5开始,内部公共getter HttpRuntime.Cache
被替换为静态变体,因此您需要调用/获取静态变量:
object cacheEntry = Cache.GetType().GetMethod("Get").Invoke(null, new object[] { cacheKey, 1 });