2 instantiations of QualifiedMethodHandle
System.Private.CoreLib (2)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\MdBinaryReaderGen.cs (1)
748handle = new QualifiedMethodHandle((int)value);
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (1)
7485return new QualifiedMethodHandle(this);
13 references to QualifiedMethodHandle
System.Private.CoreLib (13)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\MdBinaryReaderGen.cs (1)
744public static uint Read(this NativeReader reader, uint offset, out QualifiedMethodHandle handle)
src\runtime\src\coreclr\tools\Common\Internal\Metadata\NativeFormat\NativeFormatReaderGen.cs (11)
4523private readonly QualifiedMethodHandle _handle; 4525internal QualifiedMethod(MetadataReader reader, QualifiedMethodHandle handle) 4535public QualifiedMethodHandle Handle => _handle; 4565if (obj is QualifiedMethodHandle) 4566return _value == ((QualifiedMethodHandle)obj)._value; 4573public bool Equals(QualifiedMethodHandle handle) => _value == handle._value; 4579public static implicit operator Handle(QualifiedMethodHandle handle) 4746public QualifiedMethodHandle EntryPoint => _entryPoint; 4747private readonly QualifiedMethodHandle _entryPoint; 7483public QualifiedMethodHandle ToQualifiedMethodHandle(MetadataReader reader) 7873public QualifiedMethod GetQualifiedMethod(QualifiedMethodHandle handle)
System\Reflection\Runtime\Assemblies\NativeFormat\NativeFormatRuntimeAssembly.cs (1)
75QualifiedMethodHandle entrypointHandle = Scope.ScopeDefinition.EntryPoint;