IReflect.GetProperty Method (String, BindingFlags, Binder, Type, Type[], ParameterModifier[])
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Retrieves a PropertyInfo object that corresponds to a specified property with specified search constraints.
Assembly: mscorlib (in mscorlib.dll)
PropertyInfo GetProperty(
string name,
BindingFlags bindingAttr,
Binder binder,
Type returnType,
Type[] types,
ParameterModifier[] modifiers
)
Parameters
- name
- Type: System.String
The name of the member to find.
- bindingAttr
- Type: System.Reflection.BindingFlags
The binding attribute used to control the search.
- binder
- Type: System.Reflection.Binder
An object that implements Binder, containing properties related to this method.
- returnType
- Type: System.Type
The type of the property.
- types
- Type:
System.Type
[]
An array used to choose among overloaded methods with the same name.
- modifiers
- Type:
System.Reflection.ParameterModifier
[]
An array used to choose the parameter modifiers.
Return Value
Type: System.Reflection.PropertyInfoA PropertyInfo object for the located property, if a property with the specified name was located in this reflection object, or null if the property was not located.
This method retrieves a PropertyInfo object corresponding to a specified property under specified search constraints. A type array is used to choose from among overloaded methods.
Show: