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.GetMembers ()

Returns all the public members of the current Type.

[Visual Basic]
Overloads Public Function GetMembers() As MemberInfo ()
[C#]
public MemberInfo[] GetMembers();
[C++]
public: MemberInfo* GetMembers() [];
[JScript]
public function GetMembers() : MemberInfo[];

Return Value

An array of MemberInfo objects representing all the public members of the current Type.

-or-

An empty array of type MemberInfo, if the current Type does not have public members.

Remarks

Members include properties, methods, fields, events, and so on.

Class initializers are available through GetMember, GetMembers, FindMembers, and GetConstructors.

See Also

Type Class | Type Members | System Namespace | Type.GetMembers Overload List