I just went through the System.Web.Caching.Cache in reflector. It seems like everything that involves the expiry date is marked as internal. The only place i found public access to it, was through the Cache.Add and Cache.Insert methods.
So it looks like you are out of luck, unless you want to go through reflection, which I wouldn't recommend unless you really really need that date.
But if you wish to do it anyway, then here is some code that would do the trick:
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;
}
Since .NET 4.5 the internal public getter of the HttpRuntime.Cache
was replaced with a static variant and thus you will need to invoke/get the static variant:
object cacheEntry = Cache.GetType().GetMethod("Get").Invoke(null, new object[] { cacheKey, 1 });
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…