System.NetEncoding.TBase64StringEncoding.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create; overload; virtual;

C++

__fastcall virtual TBase64StringEncoding()/* overload */;
/* TCustomBase64Encoding.Create */ inline __fastcall TBase64StringEncoding(const TCustomBase64Encoding::TEncodeTable &AEncodeTable, const TCustomBase64Encoding::TDecodeTable &ADecodeTable, int CharsPerLine, System::UnicodeString LineSeparator, bool PadEnd)/* overload */ : TCustomBase64Encoding(AEncodeTable, ADecodeTable, CharsPerLine, LineSeparator, PadEnd) { }

Properties

Type Visibility Source Unit Parent
constructor public
System.NetEncoding.pas
System.NetEncoding.hpp
System.NetEncoding TBase64StringEncoding

Description


Constructs an object and initializes its data before the object is first used.

System.NetEncoding.TBase64StringEncoding.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.

See Also