IReflect.GetProperty Method (String, BindingFlags, Binder, Type, array<Type[], array<ParameterModifier[])
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Retrieves a PropertyInfo object that corresponds to a specified property with specified search constraints.
Namespace: System.Reflection
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
Function GetProperty ( _
name As String, _
bindingAttr As BindingFlags, _
binder As Binder, _
returnType As Type, _
types As Type(), _
modifiers As ParameterModifier() _
) As PropertyInfo
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: array<System.Type[]
An array used to choose among overloaded methods with the same name.
- modifiers
Type: array<System.Reflection.ParameterModifier[]
An array used to choose the parameter modifiers.
Return Value
Type: System.Reflection.PropertyInfo
A PropertyInfo object for the located property, if a property with the specified name was located in this reflection object, or nulla null reference (Nothing in Visual Basic) if the property was not located.
Remarks
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.
Version Information
Silverlight
Supported in: 5, 4, 3
Silverlight for Windows Phone
Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0
XNA Framework
Supported in: Xbox 360, Windows Phone OS 7.0
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.