Retrieves an array of MemberInfo objects corresponding either to all public members or to all members of the current class.
[Visual Basic] Function GetMembers( _ ByVal bindingAttr As BindingFlags _ ) As MemberInfo () [C#] MemberInfo[] GetMembers( BindingFlags bindingAttr ); [C++] MemberInfo* GetMembers( BindingFlags bindingAttr ) [] = 0; [JScript] function GetMembers( bindingAttr : BindingFlags ) : MemberInfo[];
An array of MemberInfo objects containing all the member information for this reflection object.
The GetMembers method retrieves an array of MemberInfo objects by using the binding attribute that corresponds either to all public members or to all members of the current class. It returns an array of all of the members defined for this object.An example of a binding attribute is IgnoreCase.
IReflect Interface | IReflect Members | System.Reflection Namespace | BindingFlags