8 implementations of GetAsync
aspire (2)
Documentation\ApiDocs\ApiDocsCache.cs (1)
41
public Task<string?>
GetAsync
(string key, CancellationToken cancellationToken = default)
Documentation\Docs\DocsCache.cs (1)
41
public Task<string?>
GetAsync
(string key, CancellationToken cancellationToken = default)
Aspire.Cli.Tests (6)
Mcp\ApiDocs\ApiDocsFetcherTests.cs (1)
112
public Task<string?>
GetAsync
(string key, CancellationToken cancellationToken = default)
Mcp\ApiDocs\ApiDocsIndexServiceTests.cs (1)
630
public Task<string?>
GetAsync
(string key, CancellationToken cancellationToken = default)
Mcp\Docs\DocsFetcherTests.cs (1)
417
public Task<string?>
GetAsync
(string key, CancellationToken cancellationToken = default)
Mcp\Docs\DocsIndexServiceTests.cs (2)
1700
public Task<string?>
GetAsync
(string key, CancellationToken cancellationToken = default) => Task.FromResult<string?>(null);
1718
public Task<string?>
GetAsync
(string key, CancellationToken cancellationToken = default)
Mcp\Docs\DocsSearchServiceTests.cs (1)
422
public Task<string?>
GetAsync
(string key, CancellationToken cancellationToken = default) => Task.FromResult<string?>(null);
4 references to GetAsync
aspire (4)
Documentation\CachedHttpDocumentFetcher.cs (2)
52
var cached = await cache.
GetAsync
(storageKey, cancellationToken).ConfigureAwait(false);
98
var cached = await cache.
GetAsync
(storageKey, cancellationToken).ConfigureAwait(false);
Documentation\Docs\DocsFetcher.cs (2)
47
var currentContent = await _cache.
GetAsync
(_cacheKey, cancellationToken).ConfigureAwait(false);
55
var legacyContent = await _cache.
GetAsync
(_llmsTxtUrl, cancellationToken).ConfigureAwait(false);