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