2 instantiations of SourceFilePathResult
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (1)
PdbSourceDocument\TestSourceLinkService.cs (1)
40return Task.FromResult<SourceFilePathResult?>(new SourceFilePathResult(_sourceFilePath));
Microsoft.VisualStudio.LanguageServices (1)
PdbSourceDocument\SourceLinkService.cs (1)
97return new SourceFilePathResult(result.Path);
6 references to SourceFilePathResult
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (3)
PdbSourceDocument\TestSourceLinkService.cs (3)
33public Task<SourceFilePathResult?> GetSourceFilePathAsync(string url, string relativePath, CancellationToken cancellationToken) 37return Task.FromResult<SourceFilePathResult?>(null); 40return Task.FromResult<SourceFilePathResult?>(new SourceFilePathResult(_sourceFilePath));
Microsoft.CodeAnalysis.Features (2)
PdbSourceDocument\ISourceLinkService.cs (1)
13Task<SourceFilePathResult?> GetSourceFilePathAsync(string url, string relativePath, CancellationToken cancellationToken);
PdbSourceDocument\PdbSourceDocumentLoaderService.cs (1)
147var sourceFile = await sourceFileTask.ConfigureAwait(false);
Microsoft.VisualStudio.LanguageServices (1)
PdbSourceDocument\SourceLinkService.cs (1)
91public async Task<SourceFilePathResult?> GetSourceFilePathAsync(string url, string relativePath, CancellationToken cancellationToken)