4 implementations of GetAsync
Microsoft.AspNetCore.OutputCaching (1)
Memory\MemoryOutputCacheStore.cs (1)
63public ValueTask<byte[]?> GetAsync(string key, CancellationToken cancellationToken)
Microsoft.AspNetCore.OutputCaching.Microbenchmarks (1)
EndToEndBenchmarks.cs (1)
243ValueTask<byte[]?> IOutputCacheStore.GetAsync(string key, CancellationToken cancellationToken)
Microsoft.AspNetCore.OutputCaching.StackExchangeRedis (1)
RedisOutputCacheStore.cs (1)
188async ValueTask<byte[]?> IOutputCacheStore.GetAsync(string key, CancellationToken cancellationToken)
Microsoft.AspNetCore.OutputCaching.Tests (1)
TestUtils.cs (1)
338public ValueTask<byte[]?> GetAsync(string? key, CancellationToken cancellationToken)
3 references to GetAsync
Aspire.StackExchange.Redis.OutputCaching.Tests (1)
OutputCacheConformanceTests.cs (1)
63await cacheStore.GetAsync("myFakeKey", CancellationToken.None);
Microsoft.AspNetCore.OutputCaching (1)
OutputCacheEntryFormatter.cs (1)
28var content = await store.GetAsync(key, cancellationToken);
Microsoft.AspNetCore.OutputCaching.Tests (1)
OutputCacheEntryFormatterTests.cs (1)
74var payload = await store.GetAsync(key, CancellationToken.None);