13 references to NotRemovable
System.Web (12)
Cache\cache.cs (2)
467ObjectCache.Insert(key, value, new CacheInsertOptions() { Priority = CacheItemPriority.NotRemovable }); 488Priority = CacheItemPriority.NotRemovable,
Cache\CacheEntry.cs (2)
86const CacheItemPriority CacheItemPriorityMax = CacheItemPriority.NotRemovable; 173if (priority == CacheItemPriority.NotRemovable) {
Cache\SqlCacheDependency.cs (2)
876cacheInternal.Add(monitorKey, changeId, new CacheInsertOptions() { Priority = CacheItemPriority.NotRemovable }); 888cacheInternal.Insert(monitorKey, changeId, new CacheInsertOptions() { Priority = CacheItemPriority.NotRemovable });
CachedPathData.cs (1)
267CacheItemPriority priority = cacheEntryIsNotRemovable ? CacheItemPriority.NotRemovable : CacheItemPriority.Normal;
Compilation\BuildResultCache.cs (2)
189new CacheInsertOptions() { Priority = CacheItemPriority.NotRemovable }); 219cachePriority = CacheItemPriority.NotRemovable;
State\InProcStateClientManager.cs (2)
351Priority = CacheItemPriority.NotRemovable, 390Priority = CacheItemPriority.NotRemovable,
State\StateRuntime.cs (1)
625Priority = CacheItemPriority.NotRemovable,
System.Web.DynamicData (1)
DynamicData\Util\FileChangeNotifier.cs (1)
59CacheItemPriority.NotRemovable, new CacheItemRemovedCallback(OnCacheItemRemoved));