3 overrides of SelectMethod
Microsoft.VisualBasic.Core (1)
Microsoft\VisualBasic\CompilerServices\VBBinder.vb (1)
1593
Public 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)
542
public sealed override MethodBase?
SelectMethod
(BindingFlags bindingAttr, MethodBase[] match, Type[] types, ParameterModifier[]? modifiers)
System.Reflection.MetadataLoadContext (1)
System\Reflection\DefaultBinder.cs (1)
47
public 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)
2868
return binder.
SelectMethod
(bindingAttr, candidates.ToArray(), types, modifiers) as MethodInfo;
2895
return binder.
SelectMethod
(bindingAttr, candidates.ToArray(), types, modifiers) as ConstructorInfo;
System.Reflection.Context (1)
System\Reflection\Context\Custom\CustomType.cs (1)
279
return (MethodInfo?)binder.
SelectMethod
(bindingAttr, matchingMethods.ToArray(), types, modifiers);
System.Reflection.MetadataLoadContext (2)
System\Reflection\TypeLoading\RuntimeTypeInfo.BindingFlags.cs (2)
43
return binder.
SelectMethod
(bindingAttr, candidates.ToArray(), types, modifiers) as ConstructorInfo;
99
return binder.
SelectMethod
(bindingAttr, candidates.ToArray(), types, modifiers) as MethodInfo;
System.Xaml (1)
System\Xaml\XamlType.cs (1)
674
MethodBase result = Type.DefaultBinder.
SelectMethod
(ConstructorBindingFlags, ctorArray, paramTypes, null);