22 references to CacheItemPriority
Microsoft.AspNetCore.Mvc.TagHelpers (2)
CacheTagHelper.cs (2)
55/// Gets or sets the <see cref="CacheItemPriority"/> policy for the cache entry. 58public CacheItemPriority? Priority { get; set; }
Microsoft.AspNetCore.Mvc.TagHelpers.Test (3)
CacheTagHelperTest.cs (3)
308var priority = CacheItemPriority.High; 982public CacheItemPriority Priority { get; set; }
Microsoft.Extensions.Caching.Abstractions (9)
CacheEntryExtensions.cs (2)
19/// <param name="priority">The <see cref="CacheItemPriority"/> to set on the entry.</param> 23CacheItemPriority priority)
ICacheEntry.cs (2)
54/// cleanup. The default is <see cref="CacheItemPriority.Normal"/>. 56CacheItemPriority Priority { get; set; }
MemoryCacheEntryExtensions.cs (2)
18/// <param name="priority">The <see cref="CacheItemPriority"/> to set on the option.</param> 22CacheItemPriority priority)
MemoryCacheEntryOptions.cs (3)
94/// memory pressure triggered cleanup. The default is <see cref="CacheItemPriority.Normal"/>. 96public CacheItemPriority Priority { get; set; } = CacheItemPriority.Normal;
Microsoft.Extensions.Caching.Memory (8)
CacheEntry.cs (4)
34private byte _priority = (byte)CacheItemPriority.Normal; 149/// memory pressure triggered cleanup. The default is <see cref="CacheItemPriority.Normal"/>. 151public CacheItemPriority Priority { get => (CacheItemPriority)_priority; set => _priority = (byte)value; }
MemoryCache.cs (4)
562case CacheItemPriority.Low: 565case CacheItemPriority.Normal: 568case CacheItemPriority.High: 571case CacheItemPriority.NeverRemove: