4 implementations of EvictByTagAsync
Microsoft.AspNetCore.OutputCaching (1)
Memory\MemoryOutputCacheStore.cs (1)
25public ValueTask EvictByTagAsync(string tag, CancellationToken cancellationToken)
Microsoft.AspNetCore.OutputCaching.Microbenchmarks (1)
EndToEndBenchmarks.cs (1)
241ValueTask IOutputCacheStore.EvictByTagAsync(string tag, CancellationToken cancellationToken) => default;
Microsoft.AspNetCore.OutputCaching.StackExchangeRedis (1)
RedisOutputCacheStore.cs (1)
165async ValueTask IOutputCacheStore.EvictByTagAsync(string tag, CancellationToken cancellationToken)
Microsoft.AspNetCore.OutputCaching.Tests (1)
TestUtils.cs (1)
333public ValueTask EvictByTagAsync(string tag, CancellationToken cancellationToken)
1 reference to EvictByTagAsync
OutputCachingSample (1)
Startup.cs (1)
40await cache.EvictByTagAsync(tag, default);