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