4 overrides of GetMethodImpl
System.Private.CoreLib (2)
src\System\Reflection\Emit\RuntimeModuleBuilder.cs (1)
722protected override MethodInfo? GetMethodImpl(string name, BindingFlags bindingAttr, Binder? binder,
src\System\Reflection\RuntimeModule.cs (1)
322protected override MethodInfo? GetMethodImpl(string name, BindingFlags bindingAttr, Binder? binder,
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingModule.cs (1)
94protected override MethodInfo? GetMethodImpl(string name, BindingFlags bindingAttr, Binder? binder, CallingConventions callConvention, Type[]? types, ParameterModifier[]? modifiers)
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Modules\RoModule.cs (1)
73protected abstract override MethodInfo? GetMethodImpl(string name, BindingFlags bindingAttr, Binder? binder, CallingConventions callConvention, Type[]? types, ParameterModifier[]? modifiers);
2 references to GetMethodImpl
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Reflection\Module.cs (2)
43return GetMethodImpl(name, DefaultLookup, null, CallingConventions.Any, null, null); 58return GetMethodImpl(name, bindingAttr, binder, callConvention, types, modifiers);