System.Tether.Manager.TTetheringProfileInfo
Delphi
  TTetheringProfileInfo = record
    ManagerIdentifier: string;
    ProfileIdentifier: string;
    ProfileText: string;
    ProfileGroup: string;
    ProfileType: TTetheringProfileType;
    ProfileVersion: Integer;
    AllowedConnections: TTetheringAllowedConnections;
    function ToString: string;
    procedure FromString(const AProfileInfoString: string);
  end;
C++
struct DECLSPEC_DRECORD TTetheringProfileInfo
{
public:
    System::UnicodeString ManagerIdentifier;
    System::UnicodeString ProfileIdentifier;
    System::UnicodeString ProfileText;
    System::UnicodeString ProfileGroup;
    System::UnicodeString ProfileType;
    int ProfileVersion;
#ifndef _WIN64
    System::DynamicArray<TTetheringAllowedConnection> AllowedConnections;
#else /* _WIN64 */
    System::TArray__1<TTetheringAllowedConnection> AllowedConnections;
#endif /* _WIN64 */
    System::UnicodeString __fastcall ToString(void);
    void __fastcall FromString(const System::UnicodeString AProfileInfoString);
};
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 Informationen über ein Remote-Profil enthält.
In der folgenden Tabelle ist die Beziehung zwischen Eigenschaften von TTetheringProfileInfo und Eigenschaften von TTetheringProfile aufgeführt:
| TTetheringProfileInfo | TTetheringProfile | 
|---|---|
AllowedConnections ist die Liste der Verbindungen, die Ihr lokales Profil zum Senden von Daten an dieses Remote-Profil verwenden kann.