Retrieves an array of MemberInfo objects corresponding to all public members or to all members that match a specified name.
[Visual Basic] Function GetMember( _ ByVal name As String, _ ByVal bindingAttr As BindingFlags _ ) As MemberInfo () [C#] MemberInfo[] GetMember( string name, BindingFlags bindingAttr ); [C++] MemberInfo* GetMember( String* name, BindingFlags bindingAttr ) [] = 0; [JScript] function GetMember( name : String, bindingAttr : BindingFlags ) : MemberInfo[];
An array of MemberInfo which match the passed in name.
The GetMember method retrieves an array of MemberInfo objects by using the name and binding attributue that correspond to all public members or to all members that match a specified name. The case of the specified name is observed or ignored, as specified. An example of a binding attribute value is IgnoreCase.
IReflect Interface | IReflect Members | System.Reflection Namespace | String | BindingFlags