9 references to GetMethodInfo
System.Private.CoreLib (9)
src\System\Delegate.CoreCLR.cs (2)
388method.GetMethodInfo(), 389RuntimeMethodHandle.GetDeclaringType(method.GetMethodInfo()),
src\System\Reflection\Emit\DynamicILGenerator.cs (1)
1005IRuntimeMethodInfo methodReal = method.GetMethodInfo();
src\System\Reflection\MethodBase.CoreCLR.cs (2)
20MethodBase? m = RuntimeType.GetMethodBase(handle.GetMethodInfo()); 36return RuntimeType.GetMethodBase(declaringType.GetRuntimeType(), handle.GetMethodInfo());
src\System\Reflection\RuntimeCustomAttributeData.cs (1)
260m_ctor = (RuntimeConstructorInfo)m_scope.ResolveMethod(caCtorToken, attributeType.GenericTypeArguments, null)!.MethodHandle.GetMethodInfo();
src\System\Reflection\RuntimeModule.cs (1)
107IRuntimeMethodInfo methodHandle = moduleHandle.ResolveMethodHandle(tk, typeArgs, methodArgs).GetMethodInfo();
src\System\Runtime\CompilerServices\RuntimeHelpers.CoreCLR.cs (1)
206IRuntimeMethodInfo methodInfo = method.GetMethodInfo() ??
src\System\RuntimeType.CoreCLR.cs (1)
1793return GetMethodBase(new ModuleHandle(scope).ResolveMethodHandle(typeMetadataToken).GetMethodInfo());