3 implementations of ListDocumentsAsync
aspire (1)
Mcp\Docs\DocsIndexService.cs (1)
190public async ValueTask<IReadOnlyList<DocsListItem>> ListDocumentsAsync(CancellationToken cancellationToken = default)
Aspire.Cli.Tests (2)
Commands\DocsCommandTests.cs (1)
180public ValueTask<IReadOnlyList<DocsListItem>> ListDocumentsAsync(CancellationToken cancellationToken = default)
Mcp\TestDocsIndexService.cs (1)
68public ValueTask<IReadOnlyList<DocsListItem>> ListDocumentsAsync(CancellationToken cancellationToken = default)
2 references to ListDocumentsAsync
aspire (2)
Commands\DocsListCommand.cs (1)
60async () => await _docsIndexService.ListDocumentsAsync(cancellationToken));
Mcp\Tools\ListDocsTool.cs (1)
45var docs = await _docsIndexService.ListDocumentsAsync(cancellationToken).ConfigureAwait(false);