System.Tether.Manager.TTetheringAdapter.PairManager

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure PairManager(const ARemoteManager: TTetheringManagerInfo); overload; virtual;
procedure PairManager(const ARemoteManager: TTetheringManagerInfo; ATimeout: Integer); overload; virtual;

C++

virtual void __fastcall PairManager(const TTetheringManagerInfo &ARemoteManager)/* overload */;
virtual void __fastcall PairManager(const TTetheringManagerInfo &ARemoteManager, int ATimeout)/* overload */;

Properties

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

Description

Requests pairing with the specified remote manager.

PairManager sends a request of type TetheringRequestPair to the remote manager (ARemoteManager). PairManager sets the state of the connection to WaitingPairResponse.

You do not need to call TTetheringAdapter.PairManager, it is called automatically when you call TTetheringManager.PairManager on the manager of your adapter.

Note: Subclasses of TTetheringAdapter may override PairManager.

See Also