2 instantiations of MethodDebugInformation
System.Reflection.Metadata (2)
System\Reflection\Metadata\MetadataReader.cs (2)
1384return new MethodDebugInformation(this, handle); 1389return new MethodDebugInformation(this, MethodDebugInformationHandle.FromRowId(handle.RowId));
12 references to MethodDebugInformation
ILCompiler.TypeSystem (2)
src\runtime\src\coreclr\tools\Common\TypeSystem\Ecma\SymbolReader\PortablePdbSymbolReader.cs (2)
115var debugInformation = _reader.GetMethodDebugInformation(debugInformationHandle); 140var debugInformation = _reader.GetMethodDebugInformation(debugInformationHandle);
Microsoft.CodeAnalysis.Features (1)
PdbSourceDocument\SymbolSourceDocumentFinder.cs (1)
42var mdi = pdbReader.GetMethodDebugInformation(methodDefHandle);
Microsoft.VisualStudio.TestPlatform.ObjectModel (3)
Navigation\PortablePdbReader.cs (3)
123MethodDebugInformation methodDebugDefinition, 153var methodDebugDefinition = _reader.GetMethodDebugInformation(handle); 167private string GetMethodFileName(MethodDebugInformation methodDebugDefinition)
System.Diagnostics.StackTrace (1)
System\Diagnostics\StackTraceSymbols.cs (1)
68MethodDebugInformation methodInfo = reader.GetMethodDebugInformation(methodDebugHandle);
System.Reflection.Metadata (3)
System\Reflection\Metadata\MetadataReader.cs (2)
1382public MethodDebugInformation GetMethodDebugInformation(MethodDebugInformationHandle handle) 1387public MethodDebugInformation GetMethodDebugInformation(MethodDefinitionHandle handle)
System\Reflection\Metadata\TypeSystem\Handles.TypeSystem.cs (1)
342/// Returns a handle to <see cref="MethodDebugInformation"/> corresponding to this handle.
System.Reflection.MetadataLoadContext (2)
System\Reflection\TypeLoading\General\Ecma\MetadataExtensions.cs (2)
41public static MethodDebugInformation GetMethodDebugInformation(this MethodDebugInformationHandle handle, MetadataReader reader) => reader.GetMethodDebugInformation(handle); 42public static MethodDebugInformation GetMethodDebugInformation(this MethodDefinitionHandle handle, MetadataReader reader) => reader.GetMethodDebugInformation(handle);