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