Retrieves an array of PropertyInfo objects corresponding to all public properties or to all properties of the current class.
[Visual Basic] Function GetProperties( _ ByVal bindingAttr As BindingFlags _ ) As PropertyInfo () [C#] PropertyInfo[] GetProperties( BindingFlags bindingAttr ); [C++] PropertyInfo* GetProperties( BindingFlags bindingAttr ) [] = 0; [JScript] function GetProperties( bindingAttr : BindingFlags ) : PropertyInfo[];
An array of PropertyInfo objects for all the properties defined on the reflection object.
The GetProperties method retrieves an array of PropertyInfo objects by using the binding attribute parameter that correspond to all public properties or to all properties of the current class.
The match is based upon a name.An example of a bind attribute value is IgnoreCase.
IReflect Interface | IReflect Members | System.Reflection Namespace | BindingFlags