I'm trying to access a cached item from my global.asax Application_End
event, but the cache has already been flushed.
Can anyone tell me at what point in application shutdown the cache gets
cleared by the runtime?
My CacheItemRemovedCallback delegate is being called with
CacheItemRemovedReason.Removed before the Application_End event.
Is there another point in application shutdown (before Application_End)
where I still have access to the cached items?
Thanks,
Jerry
[MSFT] - 08 Dec 2004 02:47 GMT
Hi Jerry,
From Application level, there is no event before Application_End where
you can get caching item. can you explain more why you need to get cached
item in Application _End? We may find a better solution for the issue.
Luke