EMS.ResourceTypes.TEMSResourceEndPoint.DoHandleRequest

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type:
procedure
function
Visibility: protected
Source:
EMS.ResourceTypes.pas
EMS.ResourceTypes.hpp
Unit: EMS.ResourceTypes
Parent: TEMSResourceEndPoint

Delphi

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

C++

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

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.