2 instantiations of PortablePdbReader
Microsoft.VisualStudio.TestPlatform.ObjectModel (2)
Navigation\PortableSymbolReader.cs (2)
165
return new
PortablePdbReader
(mp);
170
return new
PortablePdbReader
(new FileHelper().GetStream(pdbFilePath, FileMode.Open, FileAccess.Read));
6 references to PortablePdbReader
Microsoft.VisualStudio.TestPlatform.ObjectModel (6)
Navigation\DiaSession.cs (1)
125
return
PortablePdbReader
.IsPortable(stream) ? new PortableSymbolReader() : new FullSymbolReader();
Navigation\PortablePdbReader.cs (2)
36
/// Initializes a new instance of the <see cref="
PortablePdbReader
"/> class.
147
throw new ObjectDisposedException(nameof(
PortablePdbReader
));
Navigation\PortableSymbolReader.cs (3)
88
using
PortablePdbReader
pdbReader = File.Exists(pdbFilePath)
147
private static
PortablePdbReader
CreatePortablePdbReaderFromPEData(string binaryPath)
168
private static
PortablePdbReader
CreatePortablePdbReaderFromExistingPdbFile(string pdbFilePath)