REST.Backend.KinveyApi.TKinveyApi.TConnectionInfo

Aus RAD Studio API Documentation
Wechseln zu: Navigation, Suche

Delphi

    TConnectionInfo = record
    private
    public
      ApiVersion: string;
      AppKey: string;
      AppSecret: string;
      MasterSecret: string;
      UserName: string;
      Password: string;
      ProxyPassword: string;
      ProxyPort: Integer;
      ProxyServer: string;
      ProxyUsername: string;
      constructor Create(const AApiVersion, AAppKey: String); overload;
    end;

C++

struct DECLSPEC_DRECORD TConnectionInfo
{
public:
    System::UnicodeString ApiVersion;
    System::UnicodeString AppKey;
    System::UnicodeString AppSecret;
    System::UnicodeString MasterSecret;
    System::UnicodeString UserName;
    System::UnicodeString Password;
    System::UnicodeString ProxyPassword;
    int ProxyPort;
    System::UnicodeString ProxyServer;
    System::UnicodeString ProxyUsername;
    __fastcall TConnectionInfo(const System::UnicodeString AApiVersion, const System::UnicodeString AAppKey)/* overload */;
    TConnectionInfo() {}
};

Eigenschaften

Typ Sichtbarkeit Quelle Unit Übergeordnet
record
struct
public
REST.Backend.KinveyApi.pas
REST.Backend.KinveyApi.hpp
REST.Backend.KinveyApi TKinveyApi


Beschreibung

Dieser Record enthält die Kinvey-Verbindungsinformationen.

Der Record TConnectionInfo enthält die Informationen für die Verbindung mit einem Kinvey-BaaS-Provider. Wenn ein Proxy-Server verwendet wird, protokolliert TConnectionInfo auch die Proxy-Verbindungsinformationen.

TConnectionInfo enthält die folgenden Felder: ApiVersion, AppKey, AppSecret, MasterSecret, UserName, Password, ProxyPassword, ProxyPort, ProxyServer und ProxyUsername.

Siehe auch