System.TypInfo.TIntfMethodEntry

De RAD Studio API Documentation
Aller à : navigation, rechercher

Delphi

  TIntfMethodEntry = packed record
    Name: TSymbolName;
    function NameFld: TTypeInfoFieldAccessor; inline;
   {Tail: TIntfMethodEntryTail;}
    function Tail: PIntfMethodEntryTail; inline;
  end;

C++

struct DECLSPEC_DRECORD TIntfMethodEntry
{
public:
    TSymbolName Name;
    TTypeInfoFieldAccessor __fastcall NameFld();
    PIntfMethodEntryTail __fastcall Tail();
};

Propriétés

Type Visibilité  Source Unité  Parent
record
struct
public
System.TypInfo.pas
System.TypInfo.hpp
System.TypInfo System.TypInfo

Description

TIntfMethodEntry est utilisé en interne pour stocker des informations RTTI de méthode.

Les structures TIntfMethodEntry sont automatiquement insérées par le compilateur Delphi pour toutes les méthodes d'interface qui sont marquées pour émettre des informations RTTI étendues.

N'utilisez pas directement TIntfMethodEntry. Utilisez à la place la classe TRttiMethod pour accéder aux informations de méthode associées à une interface Delphi.

Voir aussi