System.Reflection.Binder.SelectProperty Method

Selects a property from the given set of properties, based on the specified criteria.

Syntax

public abstract PropertyInfo SelectProperty (BindingFlags bindingAttr, PropertyInfo[] match, Type returnType, Type[] indexes, ParameterModifier[] modifiers)

Parameters

bindingAttr
A bitwise combination of System.Reflection.BindingFlags values.
match
The set of properties that are candidates for matching. For example, when a System.Reflection.Binder object is used by erload:System.Type.InvokeMember, this parameter specifies the set of properties that reflection has determined to be possible matches, typically because they have the correct member name. The default implementation provided by Type.DefaultBinder changes the order of this array.
returnType
The return value the matching property must have.
indexes
The index types of the property being searched for. Used for index properties such as the indexer for a class.
modifiers
An array of parameter modifiers that enable binding to work with parameter signatures in which the types have been modified.

Returns

The matching property.

Remarks

This method controls the selection provided by the GetProperty method on Type.

Requirements

Namespace: System.Reflection
Assembly: mscorlib (in mscorlib.dll)
Assembly Versions: 1.0.5000.0, 2.0.0.0, 4.0.0.0