NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Type.GetProperties

Gets the properties of the current Type.

Overload List

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[];

See Also

Type Class | Type Members | System Namespace