1 write to Type
System.Reflection.Metadata (1)
System\Reflection\PortableExecutable\DebugDirectory\DebugDirectoryEntry.cs (1)
79Type = type;
18 references to Type
ILCompiler.Compiler (1)
src\runtime\src\coreclr\tools\Common\Compiler\CompilerTypeSystemContext.cs (1)
339if (debugEntry.Type != DebugDirectoryEntryType.CodeView)
ILCompiler.ReadyToRun (3)
Compiler\DependencyAnalysis\ReadyToRun\DebugDirectoryNode.cs (2)
116DebugDirectoryEntry pdbEntry = entries.Where(s => s.Type == DebugDirectoryEntryType.CodeView).FirstOrDefault(); 136builder.EmitInt((int)entries[i].Type);
src\runtime\src\coreclr\tools\Common\Compiler\CompilerTypeSystemContext.cs (1)
339if (debugEntry.Type != DebugDirectoryEntryType.CodeView)
ILCompiler.TypeSystem (1)
src\runtime\src\coreclr\tools\Common\TypeSystem\Ecma\SymbolReader\PortablePdbSymbolReader.cs (1)
86if (debugEntry.Type != DebugDirectoryEntryType.EmbeddedPortablePdb)
Microsoft.CodeAnalysis.Features (3)
Emit\CompilationOutputFilesWithImplicitPdbPath.cs (2)
57var embeddedPdbEntry = debugDirectory.FirstOrDefault(e => e.Type == DebugDirectoryEntryType.EmbeddedPortablePdb); 63var codeViewEntry = debugDirectory.FirstOrDefault(e => e.Type == DebugDirectoryEntryType.CodeView);
Emit\CompilationOutputs.cs (1)
110var embeddedPdbEntry = peReader.ReadDebugDirectory().FirstOrDefault(e => e.Type == DebugDirectoryEntryType.EmbeddedPortablePdb);
Microsoft.CodeAnalysis.Rebuild (4)
CompilationFactory.cs (1)
134var codeViewEntry = OptionsReader.PeReader.ReadDebugDirectory().Single(entry => entry.Type == DebugDirectoryEntryType.CodeView);
CompilationOptionsReader.cs (1)
449public bool HasEmbeddedPdb => PeReader.ReadDebugDirectory().Any(static entry => entry.Type == DebugDirectoryEntryType.EmbeddedPortablePdb);
Extensions.cs (2)
26var entry = peReader.ReadDebugDirectory().SingleOrDefault(x => x.Type == DebugDirectoryEntryType.EmbeddedPortablePdb); 27if (entry.Type == DebugDirectoryEntryType.Unknown)
Microsoft.NET.HostModel (1)
AppHost\PEUtils.cs (1)
57if ((int)entry.Type != IMAGE_DEBUG_TYPE_EX_DLLCHARACTERISTICS)
System.Diagnostics.StackTrace (1)
System\Diagnostics\StackTraceSymbols.cs (1)
206if (entry.Type == DebugDirectoryEntryType.EmbeddedPortablePdb)
System.Reflection.Metadata (4)
System\Reflection\PortableExecutable\PEReader.cs (3)
606if (entry.Type != DebugDirectoryEntryType.CodeView) 646if (entry.Type != DebugDirectoryEntryType.PdbChecksum) 747var embeddedPdbEntry = ImmutableArrayExtensions.FirstOrDefault(entries, e => e.Type == DebugDirectoryEntryType.EmbeddedPortablePdb);
System\Reflection\PortableExecutable\PEReader.EmbeddedPortablePdb.cs (1)
36if (entry.Type != DebugDirectoryEntryType.EmbeddedPortablePdb)