2 implementations of Size
Microsoft.AspNetCore.Mvc.TagHelpers.Test (1)
CacheTagHelperTest.cs (1)
975public long? Size { get; set; }
Microsoft.Extensions.Caching.Memory (1)
CacheEntry.cs (1)
155long? ICacheEntry.Size
4 writes to Size
Microsoft.AspNetCore.Mvc.TagHelpers.Test (2)
CacheTagHelperTest.cs (2)
249tempEntry.VerifySet(e => e.Size = 64); 250finalEntry.VerifySet(e => e.Size = childContent1.Length * 2);
Microsoft.Extensions.Caching.Abstractions (2)
CacheEntryExtensions.cs (2)
162entry.Size = size; 180entry.Size = options.Size;
3 references to Size
Microsoft.AspNetCore.Mvc.TagHelpers.Test (2)
DefaultFileVersionProviderTest.cs (1)
282Assert.Equal(expectedSize, cacheEntry.Size);
GlobbingUrlBuilderTest.cs (1)
425Assert.Equal(38, cacheEntry.Size);
Microsoft.Extensions.Caching.Abstractions (1)
MemoryCacheStatistics.cs (1)
24/// Gets an estimated sum of all the <see cref="ICacheEntry.Size" /> values currently in the memory cache.