2 implementations of TryGetMatchingSourceTextAsync
Microsoft.CodeAnalysis.Features (2)
EditAndContinue\IPdbMatchingSourceTextProvider.cs (1)
26
public ValueTask<string?>
TryGetMatchingSourceTextAsync
(string filePath, ImmutableArray<byte> requiredChecksum, SourceHashAlgorithm checksumAlgorithm, CancellationToken cancellationToken)
EditAndContinue\PdbMatchingSourceTextProvider.cs (1)
136
public async ValueTask<string?>
TryGetMatchingSourceTextAsync
(string filePath, ImmutableArray<byte> requiredChecksum, SourceHashAlgorithm checksumAlgorithm, CancellationToken cancellationToken)
2 references to TryGetMatchingSourceTextAsync
Microsoft.CodeAnalysis.Features (2)
EditAndContinue\CommittedSolution.cs (1)
390
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);