2 instantiations of DocumentDebugInfoReader
Microsoft.CodeAnalysis.Features (2)
PdbSourceDocument\PdbFileLocatorService.cs (2)
55
result = new
DocumentDebugInfoReader
(peReader, pdbReaderProvider);
82
result = new
DocumentDebugInfoReader
(peReader, readerProvider);
4 references to DocumentDebugInfoReader
Microsoft.CodeAnalysis.Features (4)
PdbSourceDocument\IPdbFileLocatorService.cs (1)
13
Task<
DocumentDebugInfoReader
?> GetDocumentDebugInfoReaderAsync(string dllPath, bool useDefaultSymbolServers, TelemetryMessage telemetry, ISourceLinkService? sourceLinkService, CancellationToken cancellationToken);
PdbSourceDocument\PdbFileLocatorService.cs (2)
28
public async Task<
DocumentDebugInfoReader
?> GetDocumentDebugInfoReaderAsync(string dllPath, bool useDefaultSymbolServers, TelemetryMessage telemetry, ISourceLinkService? sourceLinkService, CancellationToken cancellationToken)
35
DocumentDebugInfoReader
? result = null;
PdbSourceDocument\PdbSourceDocumentMetadataAsSourceFileProvider.cs (1)
178
using
var
documentDebugInfoReader = await _pdbFileLocatorService.GetDocumentDebugInfoReaderAsync(dllPath, options.AlwaysUseDefaultSymbolServers, telemetryMessage, sourceLinkService, cancellationToken).ConfigureAwait(false);