Click or drag to resize
IReflectGetProperty Method (String, BindingFlags)
Retrieves a PropertyInfo object corresponding to a specified property under specified search constraints.

Namespace: System.Reflection
Assembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax
C#
PropertyInfo GetProperty(
	string name,
	BindingFlags bindingAttr
)

Parameters

name
Type: SystemString
The name of the property to find.
bindingAttr
Type: System.ReflectionBindingFlags
The binding attributes used to control the search.

Return Value

Type: PropertyInfo
A PropertyInfo object for the located property that meets the search constraints specified in bindingAttr, or null if the property was not located.
Exceptions
ExceptionCondition
AmbiguousMatchExceptionThe object implements multiple fields with the same name.
See Also