6 references to GetMethod
System.Private.CoreLib (2)
Internal\Reflection\Augments\ReflectionAugments.cs (2)
122MethodBase methodBase = ExecutionDomain.GetMethod(declaringTypeHandle, methodHandle, genericMethodTypeArgumentHandles); 148MethodBase methodBase = ExecutionDomain.GetMethod(declaringTypeHandle, methodHandle, genericMethodTypeArgumentHandles);
System.Private.Reflection.Execution (4)
Internal\Reflection\Execution\ExecutionEnvironmentImplementation.MappingTables.cs (1)
228MethodBase methodInfo = ExecutionDomain.GetMethod(declaringTypeHandle, methodHandle, genericMethodTypeArgumentHandles);
Internal\Reflection\Execution\ReflectionExecution.cs (2)
94return ExecutionDomain.GetMethod(declaringTypeHandle, qMethodDefinition, genericMethodTypeArgumentHandles: null); 105return ExecutionDomain.GetMethod(declaringTypeHandle, qMethodDefinition, genericMethodTypeArgumentHandles);
Internal\Reflection\Extensions\NonPortable\DelegateMethodInfoRetriever.cs (1)
65return (MethodInfo)ExecutionDomain.GetMethod(typeOfFirstParameterIfInstanceDelegate, methodHandle, genericMethodTypeArgumentHandles);