23 references to CacheItemPriority
System.Web (22)
Cache\cache.cs (4)
436CacheItemPriority priority, 467ObjectCache.Insert(key, value, new CacheInsertOptions() { Priority = CacheItemPriority.NotRemovable }); 488Priority = CacheItemPriority.NotRemovable, 500CacheItemPriority priority,
Cache\CacheEntry.cs (6)
85const CacheItemPriority CacheItemPriorityMin = CacheItemPriority.Low; 86const CacheItemPriority CacheItemPriorityMax = CacheItemPriority.NotRemovable; 134CacheItemPriority priority, 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 (3)
267CacheItemPriority priority = cacheEntryIsNotRemovable ? CacheItemPriority.NotRemovable : CacheItemPriority.Normal;
Compilation\BuildResultCache.cs (4)
189new CacheInsertOptions() { Priority = CacheItemPriority.NotRemovable }); 215CacheItemPriority cachePriority; 217cachePriority = CacheItemPriority.Default; 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));