Type::ReflectedType Property
.NET Framework (current version)
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 always the same as the value of the DeclaringType property.
This example displays the reflected type of a nested class.
using namespace System; using namespace System::Reflection; public ref class MyClassA abstract { public: ref class MyClassB abstract { }; }; int main() { Console::WriteLine( "Reflected type of MyClassB is {0}", MyClassA::MyClassB::typeid->ReflectedType ); //Outputs MyClassA, the enclosing type. }
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Show: