4 references to CacheItem
System.Runtime.Caching (4)
System\Caching\CacheItem.cs (1)
23public CacheItem(string key, object value, string regionName) : this(key, value) {
System\Caching\MemoryCache.cs (2)
519return new CacheItem(item.Key, AddOrGetExistingInternal(item.Key, item.Value, policy)); 538return (value != null) ? new CacheItem(key, value) : null;
System\Caching\MemoryCacheEntry.cs (1)
156CacheEntryRemovedArguments args = new CacheEntryRemovedArguments(cache, reason, new CacheItem(Key, _value));