API:Soap.WSDLBind.TTypes.AfterConstruction

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure AfterConstruction; override;

C++

virtual void __fastcall AfterConstruction();

Properties

Type Visibility Source Unit Parent
procedure
function
public
Soap.WSDLBind.pas
Soap.WSDLBind.hpp
Soap.WSDLBind TTypes

Description


Responds after the last constructor executes.

Soap.WSDLBind.TTypes.AfterConstruction inherits from System.TInterfacedObject.AfterConstruction. All content below this line refers to System.TInterfacedObject.AfterConstruction.

Responds after the last constructor executes.

AfterConstruction is called automatically after the object's last constructor has executed. Do not call it explicitly in your applications.

When an instance of TInterfacedObject is allocated, RefCount is incremented to prevent its destruction while processing the constructor. AfterConstruction decrements that RefCount to re-establish the correct reference count after all constructors have executed.

See Also