4 implementations of GetAsync
aspire (1)
Mcp\Docs\DocsCache.cs (1)
32
public async Task<string?>
GetAsync
(string key, CancellationToken cancellationToken = default)
Aspire.Cli.Tests (3)
Mcp\Docs\DocsFetcherTests.cs (1)
387
public Task<string?>
GetAsync
(string key, CancellationToken cancellationToken = default)
Mcp\Docs\DocsIndexServiceTests.cs (1)
1020
public Task<string?>
GetAsync
(string key, CancellationToken cancellationToken = default) => Task.FromResult<string?>(null);
Mcp\Docs\DocsSearchServiceTests.cs (1)
420
public Task<string?>
GetAsync
(string key, CancellationToken cancellationToken = default) => Task.FromResult<string?>(null);
2 references to GetAsync
aspire (2)
Mcp\Docs\DocsFetcher.cs (2)
59
var cached = await _cache.
GetAsync
(SmallDocsUrl, cancellationToken).ConfigureAwait(false);
118
var cached = await _cache.
GetAsync
(SmallDocsUrl, cancellationToken).ConfigureAwait(false);