Web.HTTPApp.TCustomContentProducer.Dispatcher

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Dispatcher: IWebDispatcherAccess read GetDispatcher;

C++

__property _di_IWebDispatcherAccess Dispatcher = {read=GetDispatcher};

Properties

Type Visibility Source Unit Parent
property public
Web.HTTPApp.pas
Web.HTTPApp.hpp
Web.HTTPApp TCustomContentProducer

Description

Provides access to the dispatcher for the Web server application that includes the TCustomContentProducer object.

Read Dispatcher to access the interface of the dispatcher. In Web Broker applications, this is the interface of a TWebDispatcher or TWebModule component. In Web Broker applications, this is the interface of a TWebAppComponents component.

The IWebDispatcherAccess interface has two methods:

Request, which returns the HTTP request message to which this component responds.

Response, which returns the HTTP response message for which this component generates content.

See Also