System.TypInfo.TIntfMethodEntryTail

Aus RAD Studio API Documentation
Wechseln zu: Navigation, Suche

Delphi

  TIntfMethodEntryTail = packed record
    Kind: Byte; // 0=proc or 1=func
    CC: TCallConv;
    ParamCount: Byte;
   {Params: array[1..ParamCount] of TIntfMethodParam;
    ResultTypeName: string; // only if func
    ResultType: PPTypeInfo; // only if Len(Name) > 0
    AttrData: TAttrData;}
  end;

C++

struct DECLSPEC_DRECORD TIntfMethodEntryTail
{
public:
    System::Byte Kind;
    TCallConv CC;
    System::Byte ParamCount;
};

Eigenschaften

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

Beschreibung

TIntfMethodEntryTail wird intern zum Speichern von Methoden-RTTI-Informationen verwendet.

TIntfMethodEntryTail-Strukturen werden automatisch vom Delphi-Compiler für alle Interface-Methoden eingefügt, die für die Ausgabe von erweiterten RTTI-Informationen gekennzeichnet sind.

Verwenden Sie TIntfMethodEntryTail nicht direkt, sondern greifen Sie mit der Klasse TRttiMethod auf die einem Delphi-Interface zugeordneten Methodeninformationen zu.

Siehe auch