8 references to GetMethodBase
mscorlib (8)
system\delegate.cs (1)
282_methodBase = (MethodInfo)RuntimeType.GetMethodBase(declaringType, method);
system\multicastdelegate.cs (1)
595_methodBase = (MethodInfo)RuntimeType.GetMethodBase(declaringType, method);
system\reflection\methodbase.cs (1)
84return RuntimeType.GetMethodBase(declaringType.GetRuntimeType(), handle.GetMethodInfo());
system\reflection\methodinfo.cs (1)
992return RuntimeType.GetMethodBase(m_declaringType, RuntimeMethodHandle.StripMethodInstantiation(this)) as MethodInfo;
system\reflection\module.cs (1)
735return System.RuntimeType.GetMethodBase(declaringType as RuntimeType, methodHandle);
system\rttype.cs (2)
1989return GetMethodBase(null, methodHandle); 3663return GetMethodBase(RuntimeMethodHandle.GetDeclaringType(declaringMethod), declaringMethod);
system\runtime\remoting\message.cs (1)
443_MethodBase = RuntimeType.GetMethodBase(Type.GetTypeFromHandleUnsafe(_governingType), mh);