Datasnap.DSHTTP.TDSCacheResponseHandler.HandleParameter

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: function
Visibility: protected
Source:
Datasnap.DSHTTP.pas
Datasnap.DSHTTP.hpp
Unit: Datasnap.DSHTTP
Parent: TDSCacheResponseHandler

Delphi

function HandleParameter(const Command: TDBXCommand; const Parameter: TDBXParameter;
out Response: TJSONValue; var ResponseStream: TStream): Boolean; override;

C++

virtual bool __fastcall HandleParameter(Data::Dbxcommon::TDBXCommand* const Command, Data::Dbxcommon::TDBXParameter* const Parameter, /* out */ System::Json::TJSONValue* &Response, System::Classes::TStream* &ResponseStream);

Description

Calls GetComplexParams if one of the command's parameters is of a complex type.

The HandleParameter method calls GetComplexParams if one of the command's parameters is of a complex type (such as Table, Object, TJSONValue, TJSONArray, TJSONObject, Blob, Stream).

See Also