System.Tether.Manager.TTetheringProfile.Notify

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure Notify(const ANotification, Data: string); virtual; abstract;

C++

virtual void __fastcall Notify(const System::UnicodeString ANotification, const System::UnicodeString Data) = 0 ;

Properties

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

Description

Handles a notification sent by a remote profile.

Notify receives the following parameters:

  • ANotification is a string that represents the type of the notification.
  • Data is a string with the actual data of the notification.

Different implementations of TTetheringProfile define different built-in types of notifications and serialize notification data differently. For example, see TTetheringAppProfile.Notify.

See Also