Type.ReflectedType Vlastnost
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Získá objekt třídy, který byl použit k získání tohoto člena.
public:
virtual property Type ^ ReflectedType { Type ^ get(); };
public override Type? ReflectedType { get; }
public override Type ReflectedType { get; }
member this.ReflectedType : Type
Public Overrides ReadOnly Property ReflectedType As Type
Hodnota vlastnosti
Objekt, ze Type
kterého Type byl tento objekt získán.
Implementuje
Příklady
Tento příklad zobrazuje zrcadlený typ vnořené třídy.
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.
}
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
}
}
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
Poznámky
U Type objektů je hodnota této vlastnosti vždy stejná jako hodnota DeclaringType Vlastnosti.