15 references to CacheItemPriority
System.Runtime.Caching (15)
System\Caching\CacheItemPolicy.cs (3)
12private CacheItemPriority _priority; 30public CacheItemPriority Priority { 53_priority = CacheItemPriority.Default;
System\Caching\MemoryCache.cs (10)
223if (policy.Priority != CacheItemPriority.Default && policy.Priority != CacheItemPriority.NotRemovable) { 224throw new ArgumentOutOfRangeException("policy", RH.Format(R.Argument_out_of_range, "Priority", CacheItemPriority.Default, CacheItemPriority.NotRemovable)); 337CacheItemPriority priority = CacheItemPriority.Default; 568CacheItemPriority priority = CacheItemPriority.Default; 634CacheItemPriority.NotRemovable, 655CacheItemPriority.NotRemovable,
System\Caching\MemoryCacheEntry.cs (2)
96CacheItemPriority priority, 118if (priority == CacheItemPriority.NotRemovable) {