2 instantiations of MethodDebugInformation
System.Reflection.Metadata (2)
System\Reflection\Metadata\MetadataReader.cs (2)
1365return new MethodDebugInformation(this, handle); 1370return new MethodDebugInformation(this, MethodDebugInformationHandle.FromRowId(handle.RowId));
8 references to MethodDebugInformation
Microsoft.CodeAnalysis.CSharp.Emit2.UnitTests (1)
PDB\PortablePdbTests.cs (1)
56var methodDebugInfo = pdbReader.GetMethodDebugInformation(methodHandle);
Microsoft.CodeAnalysis.Features (1)
PdbSourceDocument\SymbolSourceDocumentFinder.cs (1)
42var mdi = pdbReader.GetMethodDebugInformation(methodDefHandle);
System.Diagnostics.StackTrace (1)
System\Diagnostics\StackTraceSymbols.cs (1)
68MethodDebugInformation methodInfo = reader.GetMethodDebugInformation(methodDebugHandle);
System.Reflection.Metadata (3)
System\Reflection\Metadata\MetadataReader.cs (2)
1363public MethodDebugInformation GetMethodDebugInformation(MethodDebugInformationHandle handle) 1368public 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);