Gets the class object that was used to obtain this member.
Assembly: mscorlib (in mscorlib.dll)
Syntax . . :: . ReflectedType
_MemberInfo. . :: . ReflectedType
Public Overrides ReadOnly Property ReflectedType As Typepublic override Type ReflectedType { get; }public:
virtual property Type^ ReflectedType {
Type^ get () override;
}abstract ReflectedType : Type
override ReflectedType : TypeImplements
_Type_MemberInfo
Remarks
For Type objects, the value of this property is always the same as the value of the DeclaringType property.
Examples
This example displays the reflected type of a nested class.
Imports System
Imports System.Reflection
Public MustInherit Class MyClassA
Public MustInherit Class MyClassB
End Class
Public Shared Sub Main()
Console.WriteLine("Reflected type of MyClassB is {0}", _
GetType(MyClassB).ReflectedType)
'Outputs MyClassA, the enclosing type.
End Sub
End Class
using System;
using System.Reflection;
public abstract class MyClassA
{
public abstract class MyClassB
{
}
public static void Main(string[] args)
{
Console.WriteLine("Reflected type of MyClassB is {0}",
typeof(MyClassB).ReflectedType); //outputs MyClassA, the enclosing 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.
}
Platforms
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.