IReflectGetProperty Method (String, BindingFlags) |
Retrieves a
PropertyInfo object corresponding to a specified property under specified search constraints.
Namespace: System.ReflectionAssembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax 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:
PropertyInfoA
PropertyInfo object for the located property that meets the search constraints specified in
bindingAttr, or null if the property was not located.
Exceptions Exception | Condition |
---|
AmbiguousMatchException | The object implements multiple fields with the same name. |
See Also