5 implementations of GetIndexAsync
aspire (1)
Documentation\Docs\DocsCache.cs (1)
56
public async Task<LlmsDocument[]?>
GetIndexAsync
(CancellationToken cancellationToken = default)
Aspire.Cli.Tests (4)
Mcp\Docs\DocsFetcherTests.cs (1)
448
public Task<LlmsDocument[]?>
GetIndexAsync
(CancellationToken cancellationToken = default)
Mcp\Docs\DocsIndexServiceTests.cs (2)
1704
public Task<LlmsDocument[]?>
GetIndexAsync
(CancellationToken cancellationToken = default) => Task.FromResult<LlmsDocument[]?>(null);
1750
public Task<LlmsDocument[]?>
GetIndexAsync
(CancellationToken cancellationToken = default)
Mcp\Docs\DocsSearchServiceTests.cs (1)
426
public Task<LlmsDocument[]?>
GetIndexAsync
(CancellationToken cancellationToken = default) => Task.FromResult<LlmsDocument[]?>(null);
1 reference to GetIndexAsync
aspire (1)
Documentation\Docs\DocsIndexService.cs (1)
171
var cachedDocuments = await _docsCache.
GetIndexAsync
(cancellationToken).ConfigureAwait(false);