System.Tether.Manager.TTetheringManager.OnRequestManagerPassword

From RAD Studio API Documentation
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