MemberTypes Enumeration
Marks each type of member that is defined as a derived class of MemberInfo.
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
Assembly: mscorlib (in mscorlib.dll)
| Member name | Description | |
|---|---|---|
| All | Specifies all member types. | |
| Constructor | Specifies that the member is a constructor | |
| Custom | Specifies that the member is a custom member type. | |
| Event | Specifies that the member is an event. | |
| Field | Specifies that the member is a field. | |
| Method | Specifies that the member is a method. | |
| NestedType | Specifies that the member is a nested type. | |
| Property | Specifies that the member is a property. | |
| TypeInfo | Specifies that the member is a type. |
These enumeration values are returned by the following properties:
To obtain the MemberTypes value for a type:
Get a Type object that represents that type.
Retrieve the value of the Type::MemberType property.
To get the MemberTypes values for the members of a type.:
Get a Type object that represents that type.
Retrieve the MemberInfo array that represents the members of that type by calling the Type::GetMembers method.
Retrieve the value of the From the MemberInfo::MemberType property for each member in the array. A switch statement in C# or Select Case statement in Visual Basic is typically used to process member types.
MemberTypes matches CorTypeAttr as defined in the corhdr.h file.
The following example displays the names of the members of the ReflectionTypeLoadException class and their associated member types.
using namespace System; using namespace System::Reflection; void main() { // Get the type of a chosen class. Type^ t = ReflectionTypeLoadException::typeid; // Get the MemberInfo array. array<MemberInfo^>^ members = t->GetMembers(); // Get and display the name and the MemberType for each member. Console::WriteLine("Members of {0}", t->Name); for each (MemberInfo^ member in members) { MemberTypes memberType = member->MemberType; Console::WriteLine(" {0}: {1}", member->Name, memberType); } } // The example displays the following output: // Members of ReflectionTypeLoadException // get_Types: Method // get_LoaderExceptions: Method // GetObjectData: Method // get_Message: Method // get_Data: Method // GetBaseException: Method // get_InnerException: Method // get_TargetSite: Method // get_StackTrace: Method // get_HelpLink: Method // set_HelpLink: Method // get_Source: Method // set_Source: Method // ToString: Method // get_HResult: Method // GetType: Method // Equals: Method // GetHashCode: Method // GetType: Method // .ctor: Constructor // .ctor: Constructor // Types: Property // LoaderExceptions: Property // Message: Property // Data: Property // InnerException: Property // TargetSite: Property // StackTrace: Property // HelpLink: Property // Source: Property // HResult: Property
Available since 1.1
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0