EMS.ResourceTypes.EndPointResponseDetailsAttribute.Create

Aus RAD Studio API Documentation
Wechseln zu: Navigation, Suche

Delphi

constructor Create(const AMethod: string; ACode: Integer; const ADescription: string; AType: TAPIDoc.TPrimitiveType; AFormat: TAPIDoc.TPrimitiveFormat; const ASchema, AReference: string); overload;
constructor Create(ACode: Integer; const ADescription: string; AType: TAPIDoc.TPrimitiveType; AFormat: TAPIDoc.TPrimitiveFormat; const ASchema, AReference: string); overload;

C++

__fastcall EndPointResponseDetailsAttribute(const System::UnicodeString AMethod, int ACode, const System::UnicodeString ADescription, TAPIDoc::TPrimitiveType AType, TAPIDoc::TPrimitiveFormat AFormat, const System::UnicodeString ASchema, const System::UnicodeString AReference)/* overload */;
__fastcall EndPointResponseDetailsAttribute(int ACode, const System::UnicodeString ADescription, TAPIDoc::TPrimitiveType AType, TAPIDoc::TPrimitiveFormat AFormat, const System::UnicodeString ASchema, const System::UnicodeString AReference)/* overload */;
/* TEndpointCustomAttribute.Create */ inline __fastcall EndPointResponseDetailsAttribute(const System::UnicodeString AMethod)/* overload */ : TEndpointCustomAttribute(AMethod) { }

Eigenschaften

Typ Sichtbarkeit Quelle Unit Übergeordnet
constructor public
EMS.ResourceTypes.pas
EMS.ResourceTypes.hpp
EMS.ResourceTypes EndPointResponseDetailsAttribute

Beschreibung


Erzeugt ein Objekt und initialisert dessen Daten.

EMS.ResourceTypes.EndPointResponseDetailsAttribute.Create erbt von System.TObject.Create. Der folgende Inhalt bezieht sich auf System.TObject.Create.

Erzeugt ein Objekt und initialisert dessen Daten.

Create erstellt ein Objekt. Der Zweck, die Größe und das Verhalten von Objekten ist sehr unterschiedlich. Der von TObject definierte Konstruktor Create weist Speicher zu, initialisiert aber keine Daten.

Abgeleitete Objekte definieren normalerweise einen Konstruktor, der bei der Erzeugung eines bestimmten Objekttyps die Daten in geeigneter Weise initialisiert.

Anmerkung:  Wenn ein Konstruktor eine Exception nicht behandelt, wird der Destruktor des Objekts aufgerufen, um die fehlerhafte Instanz zu beseitigen.

Siehe auch