Gets the properties of the current Type.
Returns all the public properties of the current Type.
[Visual Basic] Overloads Public Function GetProperties() As PropertyInfo ()
[C#] public PropertyInfo[] GetProperties();
[C++] public: PropertyInfo* GetProperties() [];
[JScript] public function GetProperties() : PropertyInfo[];
When implemented by a derived class, searches for the properties of the current Type, using the specified binding constraints.
[Visual Basic] Overloads MustOverride Public Function GetProperties(BindingFlags) As PropertyInfo ()
[C#] public abstract PropertyInfo[] GetProperties(BindingFlags);
[C++] public: virtual PropertyInfo* GetProperties(BindingFlags) [] = 0;
[JScript] public abstract function GetProperties(BindingFlags) : PropertyInfo[];