CustomReflectionBinder.SelectProperty Method |
Namespace: PostSharp.Reflection
Assembly: PostSharp (in PostSharp.dll) Version: 2023.0.3.0 (2023.0.3.0)
public override PropertyInfo SelectProperty( BindingFlags bindingFlags, PropertyInfo[] match, Type returnType, Type[] indexes, ParameterModifier[] modifiers )
Parameters
- bindingFlags
- Type: System.Reflection.BindingFlags
- match
- Type: System.Reflection.PropertyInfo[]
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. - returnType
- Type: System.Type
The return value the matching property must have. - indexes
- Type: System.Type[]
The index types of the property being searched for. Used for index properties such as the indexer for a class. - modifiers
- Type: System.Reflection.ParameterModifier[]
An array of parameter modifiers that enable binding to work with parameter signatures in which the types have been modified.
Return Value
Type: PropertyInfoThe matching property.
Exception | 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. |