Type.ReflectedType Property
.NET Framework 3.0
Gets the class object that was used to obtain this member.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
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 ); }
import System.*;
import System.Reflection.*;
abstract public class Rtype
{
abstract public class MyClassA
{
public abstract int M();
} //MyClassA
abstract public class MyClassB extends MyClassA
{
} //MyClassB
public static void main(String[] args)
{
Console.WriteLine("Reflected type of M is {0}",
MyClassB.class.ToType().GetMethod("M").get_ReflectedType());
} //main
} //Rtype
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: