1 implementation of TryGetMatchingSourceTextAsync
Microsoft.CodeAnalysis.Features (1)
EditAndContinue\IPdbMatchingSourceTextProvider.cs (1)
27
public ValueTask<string?>
TryGetMatchingSourceTextAsync
(string filePath, ImmutableArray<byte> requiredChecksum, SourceHashAlgorithm checksumAlgorithm, CancellationToken cancellationToken)
2 references to TryGetMatchingSourceTextAsync
Microsoft.CodeAnalysis.Features (2)
EditAndContinue\CommittedSolution.cs (1)
369
var text = await sourceTextProvider.
TryGetMatchingSourceTextAsync
(filePath, requiredChecksum, checksumAlgorithm, cancellationToken).ConfigureAwait(false);
EditAndContinue\Remote\RemoteEditAndContinueServiceProxy.cs (1)
60
return await _sourceTextProvider.
TryGetMatchingSourceTextAsync
(filePath, requiredChecksum, checksumAlgorithm, cancellationToken).ConfigureAwait(false);