10 references to GetMethodBase
System.Private.CoreLib (10)
src\System\Delegate.CoreCLR.cs (1)
83RuntimeMethodInfo invoke = (RuntimeMethodInfo)RuntimeType.GetMethodBase((RuntimeType)this.GetType(), method)!;
src\System\Diagnostics\StackFrame.CoreCLR.cs (1)
76return RuntimeType.GetMethodBase(null, method);
src\System\Reflection\Associates.cs (1)
104RuntimeType.GetMethodBase(reflectedType, associateMethodHandle) as RuntimeMethodInfo;
src\System\Reflection\MethodBase.CoreCLR.cs (1)
48return methodHandle.IsNullHandle() ? null : RuntimeType.GetMethodBase(null, methodHandle);
src\System\Reflection\RuntimeMethodInfo.CoreCLR.cs (3)
121return (RuntimeMethodInfo?)RuntimeType.GetMethodBase(parent, RuntimeTypeHandle.GetMethodAt(parent, slot)); 347return (MethodInfo)RuntimeType.GetMethodBase(baseDeclaringType, baseMethodHandle)!; 434ret = RuntimeType.GetMethodBase(ReflectedTypeInternal,
src\System\RuntimeType.CoreCLR.cs (3)
1803MethodBase? retval = GetMethodBase(reflectedType, methodHandle.Value); 2763MethodBase ifaceMethodBase = GetMethodBase(ifaceRtType, ifaceRtMethodHandle)!; 2779MethodBase? rtTypeMethodBase = GetMethodBase(reflectedType, classRtMethodHandle);