1 implementation of IDistributedCacheTagHelperFormatter
Microsoft.AspNetCore.Mvc.TagHelpers (1)
Cache\DistributedCacheTagHelperFormatter.cs (1)
13public class DistributedCacheTagHelperFormatter : IDistributedCacheTagHelperFormatter
6 references to IDistributedCacheTagHelperFormatter
Microsoft.AspNetCore.Mvc.TagHelpers (6)
Cache\DistributedCacheTagHelperFormatter.cs (1)
10/// Implements <see cref="IDistributedCacheTagHelperFormatter"/> by serializing the content
Cache\DistributedCacheTagHelperFormattingContext.cs (1)
9/// Represents an object containing the information to serialize with <see cref="IDistributedCacheTagHelperFormatter" />.
Cache\DistributedCacheTagHelperService.cs (3)
34private readonly IDistributedCacheTagHelperFormatter _formatter; 43/// <param name="formatter">The <see cref="IDistributedCacheTagHelperFormatter"/> for cache value serialization.</param> 48IDistributedCacheTagHelperFormatter formatter,
DependencyInjection\TagHelperExtensions.cs (1)
64services.TryAddSingleton<IDistributedCacheTagHelperFormatter, DistributedCacheTagHelperFormatter>();