1 instantiation of CustomDebugInformation
System.Reflection.Metadata (1)
System\Reflection\Metadata\MetadataReader.cs (1)
1395return new CustomDebugInformation(this, handle);
18 references to CustomDebugInformation
Microsoft.CodeAnalysis.ExpressionEvaluator.ExpressionCompiler (5)
PDB\MethodDebugInfo.Portable.cs (5)
392hoistedLocalScopes = TryGetCustomDebugInformation(reader, methodHandle, PortableCustomDebugInfoKinds.StateMachineHoistedLocalScopes, out var info) 407if (TryGetCustomDebugInformation(reader, variableOrConstantHandle, PortableCustomDebugInfoKinds.DynamicLocalVariables, out var info)) 418if (TryGetCustomDebugInformation(reader, variableOrConstantHandle, PortableCustomDebugInfoKinds.TupleElementNames, out var info)) 427private static bool TryGetCustomDebugInformation(MetadataReader reader, EntityHandle handle, Guid kind, out CustomDebugInformation customDebugInfo) 433var info = reader.GetCustomDebugInformation(infoHandle);
Microsoft.CodeAnalysis.Features (7)
EditAndContinue\EditAndContinueMethodDebugInfoReader.cs (3)
128=> TryGetCustomDebugInformation(_pdbReader, methodHandle, kind, out var cdi) ? 132private static bool TryGetCustomDebugInformation(MetadataReader reader, EntityHandle handle, Guid kind, out CustomDebugInformation customDebugInfo) 138var info = reader.GetCustomDebugInformation(infoHandle);
PdbSourceDocument\DocumentDebugInfoReader.cs (3)
72var cdi = _pdbReader.GetCustomDebugInformation(cdiHandle); 95var cdi = _pdbReader.GetCustomDebugInformation(cdiHandle); 112var customDebugInformation = _pdbReader.GetCustomDebugInformation(handle);
PdbSourceDocument\SymbolSourceDocumentFinder.cs (1)
159var cdi = pdbReader.GetCustomDebugInformation(cdiHandle);
Roslyn.Test.PdbUtilities (4)
Reader\PdbTestUtilities.cs (4)
46=> TryGetCustomDebugInformation(pdbReader, handle, kind, out var info) ? pdbReader.GetBlobContent(info.Value) : default(ImmutableArray<byte>); 65private static bool TryGetCustomDebugInformation(MetadataReader reader, EntityHandle handle, Guid kind, out CustomDebugInformation customDebugInfo) 68customDebugInfo = default(CustomDebugInformation); 71var info = reader.GetCustomDebugInformation(infoHandle);
System.Reflection.Metadata (1)
System\Reflection\Metadata\MetadataReader.cs (1)
1393public 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);