System.Tether.Manager.TTetheringManager.OnRequestManagerPassword

From RAD Studio API Documentation
Revision as of 16:19, 24 March 2015 by AChavesBot (talk | contribs) (RS-58444)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Delphi

property OnRequestManagerPassword: TTetheringRequestManagerPasswordEvent read FOnRequestManagerPassword write FOnRequestManagerPassword;

C++

__property TTetheringRequestManagerPasswordEvent OnRequestManagerPassword = {read=FOnRequestManagerPassword, write=FOnRequestManagerPassword};

Properties

Type Visibility Source Unit Parent
event published
System.Tether.Manager.pas
System.Tether.Manager.hpp
System.Tether.Manager TTetheringManager

Description

Occurs when your manager requests to pair with a remote manager and the remote manager requires a password. Handle this event to provide that password.

The event handler of OnRequestManagerPassword receives the following parameters:

  • Sender is your manager.
  • RemoteIdentifier is the identifier of the remote manager that requests a password.
  • Password is a variable parameter that must be filled with the password to use for authentication with the remote manager.

See Also