4 implementations of GetIndexAsync
aspire (1)
Mcp\Docs\DocsCache.cs (1)
121
public async Task<LlmsDocument[]?>
GetIndexAsync
(CancellationToken cancellationToken = default)
Aspire.Cli.Tests (3)
Mcp\Docs\DocsFetcherTests.cs (1)
418
public Task<LlmsDocument[]?>
GetIndexAsync
(CancellationToken cancellationToken = default)
Mcp\Docs\DocsIndexServiceTests.cs (1)
1024
public Task<LlmsDocument[]?>
GetIndexAsync
(CancellationToken cancellationToken = default) => Task.FromResult<LlmsDocument[]?>(null);
Mcp\Docs\DocsSearchServiceTests.cs (1)
424
public Task<LlmsDocument[]?>
GetIndexAsync
(CancellationToken cancellationToken = default) => Task.FromResult<LlmsDocument[]?>(null);
1 reference to GetIndexAsync
aspire (1)
Mcp\Docs\DocsIndexService.cs (1)
153
var cachedDocuments = await _docsCache.
GetIndexAsync
(cancellationToken).ConfigureAwait(false);