EMS.ResourceTypes.TEMSResourceEndPoint.DoHandleRequest

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure DoHandleRequest(const AContext: TEndpointContext); virtual; abstract;

C++

virtual void __fastcall DoHandleRequest(Ems::Resourceapi::TEndpointContext* const AContext) = 0 ;

Properties

Type Visibility Source Unit Parent
procedure
function
protected
EMS.ResourceTypes.pas
EMS.ResourceTypes.hpp
EMS.ResourceTypes TEMSResourceEndPoint

Description

Uses the information of the specified endpoint context, such as the information of the incoming request, to build an outgoing response.

TEMSCommonResource.HandleRequest calls DoHandleRequest on one of its endpoint objects that can handle the specified endpoint context.

TEMSCommonResource.HandleRequest calls DoAuthorizeRequest before it calls DoHandleRequest.

DoHandleRequest is an abstract method, you must implement DoHandleRequest in subclasses of TEMSResourceEndPoint.