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