System.Tether.Manager.TTetheringManagerInfo

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TTetheringManagerInfo = record
    ManagerIdentifier: string;
    ManagerName: string;
    ManagerText: string;
    ConnectionString: string;
    ManagerAdapters: string;
    Version: Integer;
    Adapter: TTetheringAdapter;
  end;

C++

struct DECLSPEC_DRECORD TTetheringManagerInfo
{
public:
    System::UnicodeString ManagerIdentifier;
    System::UnicodeString ManagerName;
    System::UnicodeString ManagerText;
    System::UnicodeString ConnectionString;
    System::UnicodeString ManagerAdapters;
    int Version;
    TTetheringAdapter* Adapter;
};

Properties

Type Visibility Source Unit Parent
record
struct
public
System.Tether.Manager.pas
System.Tether.Manager.hpp
System.Tether.Manager System.Tether.Manager

Description

Record that provides information about a remote manager.

The following table shows the relation between the properties of TTetheringManagerInfo and the properties of TTetheringManager:

TTetheringManagerInfo TTetheringManager

ManagerAdapters

AllowedAdapters

ManagerIdentifier

Identifier

ManagerName

Name

ManagerText

Text

Version

Version

ConnectionString is a string that the Adapter can use to establish a connection between your local manager and the remote manager.

See Also