API:Data.DBXJSON.TDBXCallbackDelegate.Execute

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: function
Visibility: public
Source:
Data.DBXJSON.pas
Data.DBXJSON.hpp
Unit: Data.DBXJSON
Parent: TDBXCallbackDelegate

Delphi

function Execute(const Arg: TJSONValue): TJSONValue; overload; override;
function Execute(Arg: TObject): TObject; overload; override;

C++

virtual System::Json::TJSONValue* __fastcall Execute(System::Json::TJSONValue* const Arg)/* overload */;
virtual System::TObject* __fastcall Execute(System::TObject* Arg)/* overload */;

Description

Holds the client-side callback logic.

Data.DBXJSON.TDBXCallbackDelegate.Execute inherits from Data.DBXJSON.TDBXCallback.Execute. All content below this line refers to Data.DBXJSON.TDBXCallback.Execute.

Holds the client-side callback logic.

Override the Execute method to implement the client-side callback logic.

See Also