12 references to ObjectCache
System.Web (12)
Cache\cache.cs (11)
210return Convert.ToInt32(ObjectCache.ItemCount); 289return ObjectCache.GetEnumerator(); 299return ObjectCache.GetEnumerator(); 396return ObjectCache.Get(key); 404ObjectCache.Insert(key, value, options: null); 413ObjectCache.Insert(key, value, new CacheInsertOptions() { Dependencies = dependencies }); 423ObjectCache.Insert(key, value, new CacheInsertOptions() { 440ObjectCache.Insert(key, value, new CacheInsertOptions() { 467ObjectCache.Insert(key, value, new CacheInsertOptions() { Priority = CacheItemPriority.NotRemovable }); 504return ObjectCache.Add(key, value, new CacheInsertOptions() { 518return ObjectCache.Remove(key, CacheItemRemovedReason.Removed);
Cache\CacheDependency.cs (1)
518cache = isPublic ? HttpRuntime.Cache.ObjectCache : HttpRuntime.Cache.InternalCache;