Soap.SOAPHTTPClient.THTTPRIO.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create(AOwner: TComponent); override;

C++

__fastcall virtual THTTPRIO(System::Classes::TComponent* AOwner);

Properties

Type Visibility Source Unit Parent
constructor public
Soap.SOAPHTTPClient.pas
Soap.SOAPHTTPClient.hpp
Soap.SOAPHTTPClient THTTPRIO

Description

Creates an instance of THTTPRIO.

Call Create to instantiate a THTTPRIO object at runtime. THTTPRIO components added to forms or data modules at design time are created automatically.

The AOwner parameter specifies another component (usually a form or data module) that is responsible for freeing the THTTPRIO instance. It becomes the value of the Owner property. If the THTTPRIO instance is created with AOwner set to nil (Delphi) or NULL (C++), then it is automatically freed when its reference count drops to zero.

See Also