API:Data.DBXCommonIndy.TX509CertificateIndy.Create
Delphi
constructor Create(CertFile: string); overload; virtual;
constructor Create(CertFile: string; const AIPImplementationID: string); overload; virtual;
constructor Create(CertFile: string; const AIPImplementationID: string; const certpassword: string); overload; virtual;
constructor Create(idX509: IIPX509; instanceOwner: Boolean = False); overload; virtual;
C++
__fastcall virtual TX509CertificateIndy(System::UnicodeString CertFile)/* overload */;
__fastcall virtual TX509CertificateIndy(System::UnicodeString CertFile, const System::UnicodeString AIPImplementationID)/* overload */;
__fastcall virtual TX509CertificateIndy(System::UnicodeString CertFile, const System::UnicodeString AIPImplementationID, const System::UnicodeString certpassword)/* overload */;
__fastcall virtual TX509CertificateIndy(Ippeerapi::_di_IIPX509 idX509, bool instanceOwner)/* overload */;
Properties
| Type | Visibility | Source | Unit | Parent |
|---|---|---|---|---|
| constructor | public | Data.DBXCommonIndy.pas Data.DBXCommonIndy.hpp |
Data.DBXCommonIndy | TX509CertificateIndy |
Description
Constructs an object and initializes its data before the object is first used.
Data.DBXCommonIndy.TX509CertificateIndy.Create inherits from System.TObject.Create. All content below this line refers to System.TObject.Create.
Constructs an object and initializes its data before the object is first used.
Create constructs an object. The purpose, size, and behavior of objects differ greatly. The Create constructor defined by TObject allocates memory but does not initialize data.
Descendant objects usually define a constructor that creates the particular kind of object and initializes its data.
Note: If an exception escapes from a constructor, the object's destructor is called to clean up the failed instance.