EnumBuilder::GetMember Method (String^, MemberTypes, BindingFlags)
.NET Framework (current version)
Returns all members with the specified name, type, and binding that are declared or inherited by this type.
Assembly: mscorlib (in mscorlib.dll)
public: virtual array<MemberInfo^>^ GetMember( String^ name, MemberTypes type, BindingFlags bindingAttr ) override
Parameters
- name
-
Type:
System::String^
The name of the member.
- type
-
Type:
System.Reflection::MemberTypes
The type of member that is to be returned.
- bindingAttr
-
Type:
System.Reflection::BindingFlags
This must be a bit flag from BindingFlags : InvokeMethod, NonPublic, and so on.
Return Value
Type: array<System.Reflection::MemberInfo^>^Returns an array of MemberInfo objects representing the public and non-public members defined on this type if nonPublic is used; otherwise, only the public members are returned.
| Exception | Condition |
|---|---|
| NotSupportedException | This method is not currently supported in types that are not complete. |
As a workaround, to retrieve the member of a finished type, retrieve the type using Type::GetType or Assembly::GetType and use reflection on the retrieved type.
.NET Framework
Available since 1.1
Silverlight
Available since 2.0
Available since 1.1
Silverlight
Available since 2.0
Show: