System.Tether.Manager.TTetheringCommand

Aus RAD Studio API Documentation
Wechseln zu: Navigation, Suche

Delphi

TTetheringCommand = record

C++

struct DECLSPEC_DRECORD TTetheringCommand
{
private:
    TTetheringCommandType FCommandType;
    System::UnicodeString FCommand;
    System::DynamicArray<System::UnicodeString> FParameters;
    System::TObject* FData;
    int FVersion;
    static _DELPHI_CONST System::WideChar CommandSep = (System::WideChar)(0x24);
    static _DELPHI_CONST System::Int8 CommandsLength = System::Int8(0xb);
    static _DELPHI_CONST System::WideChar ParameterSep = (System::WideChar)(0x23);
public:
    __fastcall TTetheringCommand(const System::UnicodeString ACommand, int AVersion, const System::UnicodeString *AParameters, const System::NativeInt AParameters_High, System::TObject* const AData)/* overload */;
    __fastcall TTetheringCommand(const System::UnicodeString ACommand, int AVersion, const System::DynamicArray<System::UnicodeString> AParameters, System::TObject* const AData)/* overload */;
    __fastcall TTetheringCommand(TTetheringCommandType AType, const System::UnicodeString ACommand, int AVersion, const System::DynamicArray<System::UnicodeString> AParameters, System::TObject* const AData)/* overload */;
    __fastcall TTetheringCommand(TTetheringCommandType AType, const System::UnicodeString ACommand, int AVersion, const System::UnicodeString *AParameters, const System::NativeInt AParameters_High, System::TObject* const AData)/* overload */;
    __fastcall TTetheringCommand(const System::UnicodeString ACommand, int AVersion)/* overload */;
    __fastcall TTetheringCommand(const System::Sysutils::TBytes RawData)/* overload */;
    System::UnicodeString __fastcall ToString();
    System::Sysutils::TBytes __fastcall ToBytes();
    __property TTetheringCommandType CommandType = {read=FCommandType};
    __property System::UnicodeString Command = {read=FCommand};
    __property System::TObject* Data = {read=FData};
    __property System::DynamicArray<System::UnicodeString> Parameters = {read=FParameters};
    __property int Version = {read=FVersion};
    TTetheringCommand() {}
};

Eigenschaften

Typ Sichtbarkeit Quelle Unit Übergeordnet
record
struct
public
System.Tether.Manager.pas
System.Tether.Manager.hpp
System.Tether.Manager System.Tether.Manager


Beschreibung

Record, der einen Befehl repräsentiert, den eine Anwendung an eine andere Anwendung über App-Tethering senden kann.

Siehe auch