EMS.Services.TEMSInternalAPI.TQueryParamNames

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

    TQueryParamNames = record
    public const
      Order = 'order';
      Where = 'where';
      Limit = 'limit';
      Skip = 'skip';
    end;

C++

struct DECLSPEC_DRECORD TQueryParamNames
{
public:
    #define TEMSInternalAPI_TQueryParamNames_Order L"order"
    #define TEMSInternalAPI_TQueryParamNames_Where L"where"
    #define TEMSInternalAPI_TQueryParamNames_Limit L"limit"
    #define TEMSInternalAPI_TQueryParamNames_Skip L"skip"
};

Properties

Type Visibility Source Unit Parent
record
struct
public
EMS.Services.pas
EMS.Services.hpp
EMS.Services TEMSInternalAPI

Description

Strings to use as keys in query parameters of requests for built-in EMS resources.

You do not need to use TQueryParamNames to use the TEMSInternalAPI class, but you might need TQueryParamNames if you create a subclass of TEMSInternalAPI that extends its functionality.

See Also