System.Tether.Manager.TTetheringNotifyErrorEvent

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TTetheringNotifyErrorEvent = procedure(const Sender, Data: TObject; AError: TTetheringError) of object;

C++

typedef void __fastcall (__closure *TTetheringNotifyErrorEvent)(System::TObject* const Sender, System::TObject* const Data, TTetheringError AError);

Properties

Type Visibility Source Unit Parent
type
typedef
public
System.Tether.Manager.pas
System.Tether.Manager.hpp
System.Tether.Manager System.Tether.Manager

Description

The type for tethering error event handlers.

The event handlers accept the following parameters:

  • Sender: The member that raises the error.
  • Data: Additional data for this error.
  • AError: The error type.

The TTetheringManager.OnError event handler is of type TTetheringNotifyErrorEvent

See Also