5 implementations of GetIndexSourceFingerprintAsync
aspire (1)
Documentation\Docs\DocsCache.cs (1)
89public async Task<string?> GetIndexSourceFingerprintAsync(CancellationToken cancellationToken = default)
Aspire.Cli.Tests (4)
Mcp\Docs\DocsFetcherTests.cs (1)
459public Task<string?> GetIndexSourceFingerprintAsync(CancellationToken cancellationToken = default)
Mcp\Docs\DocsIndexServiceTests.cs (2)
1706public Task<string?> GetIndexSourceFingerprintAsync(CancellationToken cancellationToken = default) => Task.FromResult<string?>(null); 1759public Task<string?> GetIndexSourceFingerprintAsync(CancellationToken cancellationToken = default)
Mcp\Docs\DocsSearchServiceTests.cs (1)
428public Task<string?> GetIndexSourceFingerprintAsync(CancellationToken cancellationToken = default) => Task.FromResult<string?>(null);
1 reference to GetIndexSourceFingerprintAsync
aspire (1)
Documentation\Docs\DocsIndexService.cs (1)
172var cachedFingerprint = await _docsCache.GetIndexSourceFingerprintAsync(cancellationToken).ConfigureAwait(false);