Web.WebBroker.TWebApplication.Initialize

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure Initialize; virtual;

C++

virtual void __fastcall Initialize();

Properties

Type Visibility Source Unit Parent
procedure
function
public
Web.WebBroker.pas
Web.WebBroker.hpp
Web.WebBroker TWebApplication

Description

Introduces an interface for a method that initializes the application.

The Initialize method for TWebApplication does nothing. Initialize is the first method called for every project. Descendants of TWebApplication that must perform any initialization before the application starts running override this method for that purpose.

Note: Although Initialize is the first method called in the project source code, it is not the first code that is executed in an application.

See Also