RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
IWebDispatcherAccess Interface

IWebDispatcherAccess provides access to the current HTTP request and response object.

Pascal
IWebDispatcherAccess = interface;
C++
__interface IWebDispatcherAccess;

HTTPApp

The IWebDispatcherAccess interface declares two methods, Request and Response. These return the objects that represent the current HTTP request message that is being processed and the emerging HTTP response message that will be sent back to the caller. 

In Web Broker applications, a TWebDispatcher or TWebModule component implements this interface. In WebSnap applications, a TWebAppComponents component implements this interface.

Note: In C++, method declarations that use IWebDispatcherAccess use the _di_IWebDispatcherAccess type instead. This type is a DelphiInterface wrapper around the IWebDispatcherAccess interface:
Note: typedef System::DelphiInterface< IWebDispatcherAccess > _di_IWebDispatcherAccess;
 

 

Copyright(C) 2008 CodeGear(TM). All Rights Reserved.
What do you think about this topic? Send feedback!