API:Web.CGIApp.TCGIApplication.Run

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure Run; override;

C++

virtual void __fastcall Run();

Properties

Type Visibility Source Unit Parent
procedure
function
public
Web.CGIApp.pas
Web.CGIApp.hpp
Web.CGIApp TCGIApplication

Description

Executes the Web application.

Web.CGIApp.TCGIApplication.Run inherits from Web.WebBroker.TWebApplication.Run. All content below this line refers to Web.WebBroker.TWebApplication.Run.

Executes the Web application.

When the application is executed, the application's Run method is calledautomatically.

The Run method for TWebApplication sets up the default error handler and shut down sequence for the application. Descendants of TWebApplication override the Run method to receive HTTP request messages, create the TWebRequest and TWebResponse objects for incoming requests, and call the HandleRequest method to process those requests.

See Also