System.Tether.Manager.TTetheringAdapter.AddManagerInfo

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure AddManagerInfo(const AManagerIdentifier, AManagerName, AManagerText, AConnectionString, AManagerAdapters: string; AVersion: Integer); overload;
procedure AddManagerInfo(const AManagerInfo: TTetheringManagerInfo); overload;

C++

void __fastcall AddManagerInfo(const System::UnicodeString AManagerIdentifier, const System::UnicodeString AManagerName, const System::UnicodeString AManagerText, const System::UnicodeString AConnectionString, const System::UnicodeString AManagerAdapters, int AVersion)/* overload */;
void __fastcall AddManagerInfo(const TTetheringManagerInfo &AManagerInfo)/* overload */;

Properties

Type Visibility Source Unit Parent
procedure
function
protected
System.Tether.Manager.pas
System.Tether.Manager.hpp
System.Tether.Manager TTetheringAdapter

Description

Adds a TTetheringManagerInfo entry with the specified data to the internal list of remote managers.

You may specify the remote manager information as another instance of TTetheringManagerInfo or as separate parameters. The following table shows how the provided separate parameters map to the properties of the resulting instance of TTetheringManagerInfo:

Parameter Property

AManagerIdentifier

ManagerIdentifier

AManagerName

ManagerName

AManagerText

ManagerText

AConnectionString

ConnectionString

AManagerAdapters

ManagerAdapters

AVersion

Version

See Also