MemberInfo::ReflectedType Property

Gets the class object that was used to obtain this instance of MemberInfo.

Namespace:  System.Reflection
Assembly:  mscorlib (in mscorlib.dll)

No code example is currently available or this language may not be supported.

Property Value

Type: System::Type
The type object through which this MemberInfo object was obtained.

The ReflectedType property retrieves the Type object that was used to obtain this instance of MemberInfo. This may differ from DeclaringType if this MemberInfo object represents a member inherited from a base class.

If the MemberInfo object is a global member (that is, if it was obtained from the Module::GetMethods method, which returns global methods on a module), the returned DeclaringType will be nullptr.

The following example shows how the ReflectedType changes when the member Object::ToString is viewed from a MemberInfo obtained from type Object and from a MemberInfo obtained from the MemberInfo class itself, which inherits Object but does not override Object::ToString.

No code example is currently available or this language may not be supported.

Silverlight

Supported in: 5, 4, 3

Silverlight for Windows Phone

Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0

XNA Framework

Supported in: Xbox 360, Windows Phone OS 7.0

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.

Community Additions

ADD
Show: