RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
IWebRequestHandler Interface

IWebRequestHandler is the interface for objects that dispatch HTTP request messages.

Pascal
IWebRequestHandler = interface;
C++
__interface IWebRequestHandler;

Dispatcher components such as TPageDispatcher , TAdapterDispatcher, and TWebDispatcher implement the IWebRequestHandler interface. This interface includes only a single method, HandleRequest, which processes an HTTP request message, filling out the corresponding response, which can then be returned to the caller.

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

 

Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
What do you think about this topic? Send feedback!