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