Web.WebBroker.Application
Delphi
Application: TWebApplication = nil;
C++
extern DELPHI_PACKAGE TWebApplication* Application;
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
variable | public | Web.WebBroker.pas Web.WebBroker.hpp |
Web.WebBroker | Web.WebBroker |
Description
Represents a web server application for an Internet project.
By default, when a new Internet server project is created, an Application object is created and assigned to Application. The type of TWebApplication object that is created depends on whether the project includes the Web.Win.ISAPIApp unit, the Web.ApacheApp unit, or the Web.CGIApp unit:
- If the project represents an Apache server Application, Application is initialized to a TApacheApplication object.
- If the project represents a CGI server Application, Application is initialized to a TCGIApplication object.
- If the project represents an ISAPI server Application, Application is initialized to a TISAPIApplication object.