PostSharpAPI ReferencePost­Sharp.​ReflectionCustom­Reflection­BinderSelect­Property
Open sandboxFocus

Method SelectProperty

SelectProperty(BindingFlags, PropertyInfo[], Type, Type[], ParameterModifier[])

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

Declaration
public override PropertyInfo SelectProperty(BindingFlags bindingFlags, PropertyInfo[] match, Type returnType, Type[] indexes, ParameterModifier[] modifiers)
Parameters
Type Name Description
BindingFlags bindingFlags
PropertyInfo[] match

The set of properties that are candidates for matching. For example, when a Binder object is used by 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 DefaultBinder changes the order of this array.

Type returnType

The return value the matching property must have.

Type[] indexes

The index types of the property being searched for. Used for index properties such as the indexer for a class.

ParameterModifier[] modifiers

An array of parameter modifiers that enable binding to work with parameter signatures in which the types have been modified.

Returns
Type Description
PropertyInfo

The matching property.

Exceptions
Type Condition
AmbiguousMatchException

For the default binder, match contains multiple properties that are equally good matches for returnType and indexes.

ArgumentException

For the default binder, match is null or an empty array.