March 2002
Intermediate to advanced
864 pages
31h 8m
English
MemberTypes
This enumeration represents the different types of
MemberInfo objects.
All specifies all
member types, and
Custom specifies a
custom member type. All of the other enumerated values specify the
type of the MemberInfo object.
For example, Field
designates that the MemberInfo
object is actually a FieldInfo
object.
public enum MemberTypes { Constructor = 1, Event = 2, Field = 4, Method = 8, Property = 16, TypeInfo = 32, Custom = 64, NestedType = 128, All = 191 }
System.Object→System.ValueType→System.Enum(System.IComparable, System.IFormattable, System.IConvertible)→MemberTypes
MemberInfo.MemberType
System.Type.{FindMembers(), GetMember()}