3 overrides of SelectProperty
Microsoft.VisualBasic.Core (1)
Microsoft\VisualBasic\CompilerServices\VBBinder.vb (1)
1600Public Overrides Function SelectProperty(ByVal bindingAttr As BindingFlags, ByVal match() As PropertyInfo, ByVal returnType As Type, ByVal indexes() As Type, ByVal modifiers() As ParameterModifier) As PropertyInfo
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\DefaultBinder.cs (1)
635public sealed override PropertyInfo? SelectProperty(BindingFlags bindingAttr, PropertyInfo[] match, Type? returnType,
System.Reflection.MetadataLoadContext (1)
System\Reflection\DefaultBinder.cs (1)
147public sealed override PropertyInfo? SelectProperty(BindingFlags bindingAttr, PropertyInfo[] match, Type? returnType,
4 references to SelectProperty
System.Private.CoreLib (1)
src\System\RuntimeType.CoreCLR.cs (1)
2933return binder.SelectProperty(bindingAttr, candidates.ToArray(), returnType, types, modifiers);
System.Reflection.Context (1)
System\Reflection\Context\Custom\CustomType.cs (1)
137return binder.SelectProperty(bindingAttr, matchingProperties.ToArray(), returnType, types, modifiers);
System.Reflection.Emit (1)
System\Reflection\Emit\TypeBuilderImpl.cs (1)
1073return binder.SelectProperty(bindingAttr, candidates.ToArray(), returnType, types, modifiers);
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\RuntimeTypeInfo.BindingFlags.cs (1)
161return binder.SelectProperty(bindingAttr, candidates.ToArray(), returnType, types, modifiers);