REST.Backend.ParseApi.TParseApi.QueryInstallation

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

Delphi

procedure QueryInstallation(const AQuery: array of string; const AJSONArray: TJSONArray); overload;
procedure QueryInstallation(const AQuery: array of string; const AJSONArray: TJSONArray; out AObjects: TArray<TObjectID>); overload;

C++

void __fastcall QueryInstallation(const System::UnicodeString *AQuery, const int AQuery_High, System::Json::TJSONArray* const AJSONArray)/* overload */;
void __fastcall QueryInstallation(const System::UnicodeString *AQuery, const int AQuery_High, System::Json::TJSONArray* const AJSONArray, /* out */ System::DynamicArray<TObjectID> &AObjects)/* overload */;

プロパティ

種類 可視性 ソース ユニット
procedure
function
public
REST.Backend.ParseApi.pas
REST.Backend.ParseApi.hpp
REST.Backend.ParseApi TParseApi


説明

インストール オブジェクトを問い合わせます。

QueryInstallation メソッドでは、(プッシュ通知を受信するように登録されたデバイスを表す)インストール オブジェクトを問い合わせます。

QueryInstallation は次のパラメータを受け取ります。

パラメータ 説明
AQuery 問い合わせを格納する文字列配列。
AJSONArray JSON オブジェクトを格納する TJSONArray。問い合わせで見つかったインストール オブジェクトごとに、TJSONObject が 1 つあります。
AObjects 問い合わせの結果を TObjectID 型要素の配列として格納する出力パラメータ。

メモ: このパラメータは 2 番目のオーバーロード メソッドにのみ使用されます。

関連項目