IReflect.GetMember Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Retrieves an array of MemberInfo objects corresponding to all public members or to all members that match a specified name.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- name
- Type: System.String
The name of the member to find.
- bindingAttr
- Type: System.Reflection.BindingFlags
The binding attributes used to control the search.
Return Value
Type: System.Reflection.MemberInfo []An array of MemberInfo objects matching the name parameter.
The GetMember method retrieves an array of MemberInfo objects by using the name and binding attribute 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 by BindingFlags.IgnoreCase.