Type::ReflectedType Property
Gets the class object that was used to obtain this member.
Assembly: mscorlib (in mscorlib.dll)
For Type objects, the value of this property is the same as the value of the DeclaringType property.
This example displays the reflected type of a method in a derived class. Although the method m is declared in MyClassA, its reflected type is obtained from MyClassB.
using namespace System; using namespace System::Reflection; public ref class rtype abstract { public: ref class MyClassA abstract { public: virtual int m() = 0; }; ref class MyClassB abstract: public MyClassA{}; }; int main() { Console::WriteLine( "Reflected type of m is {0}", rtype::MyClassB::typeid->GetMethod( "m" )->ReflectedType ); }
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98, Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC, Xbox 360, Zune
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.