2 implementations of GetAsync
aspire (1)
Caching\DiskCache.cs (1)
49
public async Task<string?>
GetAsync
(string key, CancellationToken cancellationToken = default)
Aspire.Cli.Tests (1)
TestServices\NullDiskCache.cs (1)
14
public Task<string?>
GetAsync
(string key, CancellationToken cancellationToken = default)
1 reference to GetAsync
aspire (1)
DotNet\DotNetCliRunner.cs (1)
867
var cached = await _diskCache.
GetAsync
(rawKey, cancellationToken).ConfigureAwait(false);