EMS.Services.TEMSInternalAPI.TQueryParamNames

提供: RAD Studio API Documentation
移動先: 案内検索

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"
};

プロパティ

種類 可視性 ソース ユニット
record
struct
public
EMS.Services.pas
EMS.Services.hpp
EMS.Services TEMSInternalAPI


説明

組み込み EMS リソースの要求のクエリ パラメータでキーとして使用する文字列です。

TEMSInternalAPI クラスを使用するのに TQueryParamNames を使用する必要はありませんが、TEMSInternalAPI のサブクラスを作成してその機能を拡張する場合は、TQueryParamNames が必要になる可能性があります。

関連項目