System.Rtti.TRttiMethod.CallingConvention
Delphi
property CallingConvention: TCallConv read GetCallingConvention;
C++
__property System::Typinfo::TCallConv CallingConvention = {read=GetCallingConvention, nodefault};
Propriétés
Type | Visibilité | Source | Unité | Parent |
---|---|---|---|---|
property | public | System.Rtti.pas System.Rtti.hpp |
System.Rtti | TRttiMethod |
Description
Spécifie la convention d'appel de la méthode.
Utilisez CallingConvention pour obtenir la convention d'appel utilisée lors de l'appel à la méthode. Les valeurs possibles renvoyées par la propriété CallingConvention sont listées dans le tableau suivant.
Valeur | Signification |
---|---|
ccReg |
La méthode utilise la convention d'appel register. |
ccCdecl |
La méthode utilise la convention d'appel cdecl. |
ccPascal |
La méthode utilise la convention d'appel pascal. |
ccStdCall |
La méthode utilise la convention d'appel stdcall. |
ccSafeCall |
La méthode utilise la convention d'appel safecall. |
Voir aussi