I\'m using the cache provided by System.Runtime.Caching.MemoryCache.
System.Runtime.Caching.MemoryCache
I\'d like to enumerate over the cache\'s items so that I can invalidate (evict then rel
In 2014,
This is the correct way to get all the items:
Dim AllItems = MemoryCache.Default.Select(Of ItemType)(Function(O) O.Value)
Hope this helps someone.