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!

TypeDelegator.GetMembers

Returns an array of specified MemberInfo objects, representing members (properties, methods, fields, events, etc) specified by bindingAttr.

[Visual Basic]
Overrides Public Function GetMembers( _
   ByVal bindingAttr As BindingFlags _
) As MemberInfo ()
[C#]
public override MemberInfo[] GetMembers(
   BindingFlags bindingAttr
);
[C++]
public: override MemberInfo* GetMembers(
   BindingFlags bindingAttr
) [];
[JScript]
public override function GetMembers(
   bindingAttr : BindingFlags
) : MemberInfo[];

Parameters

bindingAttr
This bit mask affects the way in which the search is conducted. The binding attributes used to control the search. An example is BindingFlags.NonPublic

Return Value

Returns an array of MemberInfo objects representing all the members of the current class which meets the bindingAttr filter. Returns the members from the current class and its base classes.

Remarks

If bindingAttr is BindingFlags.NonPublic, all the members will be considered. If there are no matches, an empty array is returned.

See Also

TypeDelegator Class | TypeDelegator Members | System.Reflection Namespace