IReflect.GetProperties(BindingFlags) Method

Definition

Retrieves an array of PropertyInfo objects corresponding to all public properties or to all properties of the current class.

public:
 cli::array <System::Reflection::PropertyInfo ^> ^ GetProperties(System::Reflection::BindingFlags bindingAttr);
public System.Reflection.PropertyInfo[] GetProperties (System.Reflection.BindingFlags bindingAttr);
abstract member GetProperties : System.Reflection.BindingFlags -> System.Reflection.PropertyInfo[]
Public Function GetProperties (bindingAttr As BindingFlags) As PropertyInfo()

Parameters

bindingAttr
BindingFlags

The binding attribute used to control the search.

Returns

An array of PropertyInfo objects for all the properties defined on the reflection object.

Applies to

See also