3 overrides of GetMethodImpl
System.Private.CoreLib (1)
System\Reflection\Runtime\Modules\NativeFormat\NativeFormatRuntimeModule.cs (1)
72
protected sealed override MethodInfo
GetMethodImpl
(string name, BindingFlags bindingAttr, Binder binder, CallingConventions callConvention, Type[] types, ParameterModifier[] modifiers)
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingModule.cs (1)
94
protected 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)
73
protected 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\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Module.cs (2)
43
return
GetMethodImpl
(name, DefaultLookup, null, CallingConventions.Any, null, null);
58
return
GetMethodImpl
(name, bindingAttr, binder, callConvention, types, modifiers);