10 overrides of GetMethodImpl
System.Private.CoreLib (6)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\SymbolType.cs (1)
386
protected override MethodInfo
GetMethodImpl
(string name, BindingFlags bindingAttr, Binder? binder,
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\TypeBuilderInstantiation.cs (1)
170
protected override MethodInfo
GetMethodImpl
(string name, BindingFlags bindingAttr, Binder? binder, CallingConventions callConvention, Type[]? types, ParameterModifier[]? modifiers) { throw new NotSupportedException(SR.Format(SR.NotSupported_TypeBuilderInstantiation_ResolvingMembers, nameof(TypeBuilder.GetMethod))); }
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\ModifiedType.cs (1)
109
protected override MethodInfo?
GetMethodImpl
(string name, BindingFlags bindingAttr, Binder? binder,
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\SignatureType.cs (1)
146
protected sealed override MethodInfo
GetMethodImpl
(string name, BindingFlags bindingAttr, Binder? binder, CallingConventions callConvention, Type[]? types, ParameterModifier[]? modifiers) => throw new NotSupportedException(SR.NotSupported_SignatureType);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\TypeDelegator.cs (1)
73
protected override MethodInfo?
GetMethodImpl
(string name, BindingFlags bindingAttr, Binder? binder,
System\RuntimeType.NativeAot.cs (1)
734
protected override MethodInfo?
GetMethodImpl
(string name, BindingFlags bindingAttr, Binder? binder, CallingConventions callConvention, Type[]? types, ParameterModifier[]? modifiers)
System.Private.Reflection.Execution (1)
Internal\Reflection\Execution\TypeLoader\ConstraintValidatorSupport.cs (1)
186
protected override MethodInfo
GetMethodImpl
(string name, BindingFlags bindingAttr, Binder binder, CallingConventions callConvention, Type[] types, ParameterModifier[] modifiers) { Debug.Assert(false); throw NotImplemented.ByDesign; }
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingType.cs (1)
353
protected override MethodInfo?
GetMethodImpl
(string name, BindingFlags bindingAttr, Binder? binder, CallingConventions callConvention, Type[]? types, ParameterModifier[]? modifiers)
System.Reflection.Emit (1)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\SymbolType.cs (1)
386
protected override MethodInfo
GetMethodImpl
(string name, BindingFlags bindingAttr, Binder? binder,
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\RuntimeTypeInfo.BindingFlags.cs (1)
54
protected sealed 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\Type.cs (2)
302
return
GetMethodImpl
(name, bindingAttr, null, CallingConventions.Any, null, null);
342
return
GetMethodImpl
(name, bindingAttr, binder, callConvention, types, modifiers);