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)
36return RuntimeType.GetMethodBase(declaringType.GetRuntimeType(), handle.GetMethodInfo());
src\System\Reflection\RuntimeMethodInfo.CoreCLR.cs (1)
457return (RuntimeType.GetMethodBase(m_declaringType, RuntimeMethodHandle.StripMethodInstantiation(this)) as MethodInfo)!;
src\System\Reflection\RuntimeModule.cs (1)
121return RuntimeType.GetMethodBase(declaringType as RuntimeType, methodHandle);
src\System\RuntimeType.CoreCLR.cs (2)
1798return GetMethodBase(null, methodHandle); 3277return GetMethodBase(RuntimeMethodHandle.GetDeclaringType(declaringMethod), declaringMethod);