1 implementation of IDistributedCacheTagHelperStorage
Microsoft.AspNetCore.Mvc.TagHelpers (1)
Cache\DistributedCacheTagHelperStorage.cs (1)
12public class DistributedCacheTagHelperStorage : IDistributedCacheTagHelperStorage
21 references to IDistributedCacheTagHelperStorage
Microsoft.AspNetCore.Mvc.TagHelpers (7)
Cache\DistributedCacheTagHelperService.cs (3)
33private readonly IDistributedCacheTagHelperStorage _storage; 42/// <param name="storage">The <see cref="DistributedCacheTagHelper"/>'s <see cref="IDistributedCacheTagHelperStorage"/>.</param> 47IDistributedCacheTagHelperStorage storage,
Cache\DistributedCacheTagHelperStorage.cs (1)
9/// Implements <see cref="IDistributedCacheTagHelperStorage"/> by storing the content
Cache\IDistributedCacheTagHelperFormatter.cs (1)
10/// serialize html fragments for being store by <see cref="IDistributedCacheTagHelperStorage" />
DependencyInjection\TagHelperExtensions.cs (1)
63services.TryAddSingleton<IDistributedCacheTagHelperStorage, DistributedCacheTagHelperStorage>();
DistributedCacheTagHelper.cs (1)
22/// Prefix used by <see cref="DistributedCacheTagHelper"/> instances when creating entries in <see cref="IDistributedCacheTagHelperStorage"/>.
Microsoft.AspNetCore.Mvc.TagHelpers.Test (14)
DistributedCacheTagHelperTest.cs (14)
34var storage = new Mock<IDistributedCacheTagHelperStorage>(); 76var storage = new Mock<IDistributedCacheTagHelperStorage>(); 129var storage = GetStorage(); 191var storage = GetStorage(); 249var storage = GetStorage(); 275var storage = GetStorage(); 298var storage = GetStorage(); 324var storage = GetStorage(); 354var storage = GetStorage(Options.Create(new MemoryDistributedCacheOptions { Clock = clock.Object })); 416var storage = GetStorage(Options.Create(new MemoryDistributedCacheOptions { Clock = clock.Object })); 478var storage = GetStorage(Options.Create(new MemoryDistributedCacheOptions { Clock = clock.Object })); 541var storage = GetStorage(); 635var storage = GetStorage(); 774private static IDistributedCacheTagHelperStorage GetStorage(IOptions<MemoryDistributedCacheOptions> options = null)