1 instantiation of CustomDebugInformation
System.Reflection.Metadata (1)
System\Reflection\Metadata\MetadataReader.cs (1)
1414return new CustomDebugInformation(this, handle);
17 references to CustomDebugInformation
dotnet-sourcelink (2)
ILCompiler.TypeSystem (1)
src\runtime\src\coreclr\tools\Common\TypeSystem\Ecma\SymbolReader\PortablePdbSymbolReader.cs (1)
217CustomDebugInformation cdi = _reader.GetCustomDebugInformation(cdiHandle);
Microsoft.CodeAnalysis (4)
src\roslyn\src\Dependencies\CodeAnalysis.Debugging\CustomDebugInfoReader.cs (4)
872/// Returns <see cref="CustomDebugInformation"/> of the specified kind associated with the given handle if there is a single such entry. 875public static bool TryGetCustomDebugInformation(this MetadataReader reader, EntityHandle handle, Guid kind, out CustomDebugInformation customDebugInfo) 881var info = reader.GetCustomDebugInformation(infoHandle); 905if (!pdbReader.TryGetCustomDebugInformation(EntityHandle.ModuleDefinition, PortableCustomDebugInfoKinds.CompilationOptions, out var customDebugInformation))
Microsoft.CodeAnalysis.Features (8)
EditAndContinue\EditAndContinueDebugInfoReader.cs (1)
146=> _pdbReader.TryGetCustomDebugInformation(methodHandle, kind, out var cdi)
PdbSourceDocument\DocumentDebugInfoReader.cs (2)
70if (!_pdbReader.TryGetCustomDebugInformation(EntityHandle.ModuleDefinition, PortableCustomDebugInfoKinds.SourceLink, out var cdi) || cdi.Value.IsNil) 82=> _pdbReader.TryGetCustomDebugInformation(handle, PortableCustomDebugInfoKinds.EmbeddedSource, out var cdi)
PdbSourceDocument\SymbolSourceDocumentFinder.cs (1)
156if (pdbReader.TryGetCustomDebugInformation(typeDefHandle, PortableCustomDebugInfoKinds.TypeDefinitionDocuments, out var cdi) &&
src\roslyn\src\Dependencies\CodeAnalysis.Debugging\CustomDebugInfoReader.cs (4)
872/// Returns <see cref="CustomDebugInformation"/> of the specified kind associated with the given handle if there is a single such entry. 875public static bool TryGetCustomDebugInformation(this MetadataReader reader, EntityHandle handle, Guid kind, out CustomDebugInformation customDebugInfo) 881var info = reader.GetCustomDebugInformation(infoHandle); 905if (!pdbReader.TryGetCustomDebugInformation(EntityHandle.ModuleDefinition, PortableCustomDebugInfoKinds.CompilationOptions, out var customDebugInformation))
System.Reflection.Metadata (1)
System\Reflection\Metadata\MetadataReader.cs (1)
1412public CustomDebugInformation GetCustomDebugInformation(CustomDebugInformationHandle handle)
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\General\Ecma\MetadataExtensions.cs (1)
22public static CustomDebugInformation GetCustomDebugInformation(this CustomDebugInformationHandle handle, MetadataReader reader) => reader.GetCustomDebugInformation(handle);