3 overrides of SelectMethod
Microsoft.VisualBasic.Core (1)
Microsoft\VisualBasic\CompilerServices\VBBinder.vb (1)
1593Public Overrides Function SelectMethod(ByVal bindingAttr As BindingFlags, ByVal match() As MethodBase, ByVal types() As Type, ByVal modifiers() As ParameterModifier) As MethodBase
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\DefaultBinder.cs (1)
542public sealed override MethodBase? SelectMethod(BindingFlags bindingAttr, MethodBase[] match, Type[] types, ParameterModifier[]? modifiers)
System.Reflection.MetadataLoadContext (1)
System\Reflection\DefaultBinder.cs (1)
47public sealed override MethodBase? SelectMethod(BindingFlags bindingAttr, MethodBase[] match, Type[] types, ParameterModifier[]? modifiers)
6 references to SelectMethod
System.Private.CoreLib (2)
src\System\RuntimeType.CoreCLR.cs (2)
2868return binder.SelectMethod(bindingAttr, candidates.ToArray(), types, modifiers) as MethodInfo; 2895return binder.SelectMethod(bindingAttr, candidates.ToArray(), types, modifiers) as ConstructorInfo;
System.Reflection.Context (1)
System\Reflection\Context\Custom\CustomType.cs (1)
279return (MethodInfo?)binder.SelectMethod(bindingAttr, matchingMethods.ToArray(), types, modifiers);
System.Reflection.MetadataLoadContext (2)
System\Reflection\TypeLoading\RuntimeTypeInfo.BindingFlags.cs (2)
43return binder.SelectMethod(bindingAttr, candidates.ToArray(), types, modifiers) as ConstructorInfo; 99return binder.SelectMethod(bindingAttr, candidates.ToArray(), types, modifiers) as MethodInfo;
System.Xaml (1)
System\Xaml\XamlType.cs (1)
674MethodBase result = Type.DefaultBinder.SelectMethod(ConstructorBindingFlags, ctorArray, paramTypes, null);