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