System.Rtti.TRttiContext

Aus RAD Studio API Documentation
Wechseln zu: Navigation, Suche

Delphi

  TRttiContext = record
  private
    FContextToken: IInterface;
{$HINTS OFF}
  private class var
    FGlobalContextCounter: Integer;
    FGlobalContextToken: IInterface;
{$HINTS ON}
  public
    class function Create: TRttiContext; static;
    procedure Free;
    class procedure KeepContext; static;
    class procedure DropContext; static;
    function GetType(ATypeInfo: Pointer): TRttiType; overload;
    function GetType(AClass: TClass): TRttiType; overload;
    function GetTypes: TArray<TRttiType>;
    function FindType(const AQualifiedName: string): TRttiType;
    function GetPackages: TArray<TRttiPackage>;
  end;

C++

struct DECLSPEC_DRECORD TRttiContext
{
private:
    System::_di_IInterface FContextToken;
    static int FGlobalContextCounter;
    static System::_di_IInterface FGlobalContextToken;
public:
    static TRttiContext __fastcall Create();
    void __fastcall Free();
    static void __fastcall KeepContext();
    static void __fastcall DropContext();
    TRttiType* __fastcall GetType(void * ATypeInfo)/* overload */;
    TRttiType* __fastcall GetType(System::TClass AClass)/* overload */;
#ifndef _WIN64
    System::DynamicArray<TRttiType*> __fastcall GetTypes();
#else /* _WIN64 */
    System::TArray__1<TRttiType*> __fastcall GetTypes();
#endif /* _WIN64 */
    TRttiType* __fastcall FindType(const System::UnicodeString AQualifiedName);
#ifndef _WIN64
    System::DynamicArray<TRttiPackage*> __fastcall GetPackages();
#else /* _WIN64 */
    System::TArray__1<TRttiPackage*> __fastcall GetPackages();
#endif /* _WIN64 */
private:
};

Eigenschaften

Typ Sichtbarkeit Quelle Unit Übergeordnet
record
struct
public
System.Rtti.pas
System.Rtti.hpp
System.Rtti System.Rtti

Beschreibung

TRttiContext ist der zentrale Typ der Unit Rtti.

Mit einer Instanz von TRttiContext greifen Sie auf Typinformationen aller public Typen in einer Anwendung und den zugeordneten Packages zu. In einer Anwendung wird tatsächlich nur eine TRttiContext-Instanz erstellt.

TRttiContext stellt Methoden und Eigenschaften bereit, die das Abrufen von TRttiObject-Instanzen ermöglichen, die unterschiedliche RTTI-Informationen repräsentieren. Alle TRttiObject-Instanzen werden intern zwischengespeichert und freigegeben, wenn die Anwendung beendet wird.

Siehe auch

Codebeispiele