7 references to GetMethodBase
System.Private.CoreLib (7)
src\System\Delegate.CoreCLR.cs (1)
217
_methodBase = (MethodInfo)RuntimeType.
GetMethodBase
(declaringType, method)!;
src\System\MulticastDelegate.CoreCLR.cs (1)
534
_methodBase = (MethodInfo)RuntimeType.
GetMethodBase
(declaringType, method)!;
src\System\Reflection\MethodBase.CoreCLR.cs (1)
36
return RuntimeType.
GetMethodBase
(declaringType.GetRuntimeType(), handle.GetMethodInfo());
src\System\Reflection\RuntimeMethodInfo.CoreCLR.cs (1)
457
return (RuntimeType.
GetMethodBase
(m_declaringType, RuntimeMethodHandle.StripMethodInstantiation(this)) as MethodInfo)!;
src\System\Reflection\RuntimeModule.cs (1)
121
return RuntimeType.
GetMethodBase
(declaringType as RuntimeType, methodHandle);
src\System\RuntimeType.CoreCLR.cs (2)
1798
return
GetMethodBase
(null, methodHandle);
3277
return
GetMethodBase
(RuntimeMethodHandle.GetDeclaringType(declaringMethod), declaringMethod);