System.Tether.Manager.TTetheringAdapter.NotifyShutdown

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure NotifyShutdown; virtual;

C++

virtual void __fastcall NotifyShutdown();

Properties

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

Description

Notifies the shutdown of the manager of your adapter to any remote manager paired with the manager of your adapter, including the manager of your adapter.

When you disable (Enabled is False) or destroy the manager of your adapter, the manager of your adapter calls NotifyShutdown on its adapters.

NotifyShutdown notifies the shutdown of the manager of the adapter to any remote manager paired with the manager of the adapter, including the manager of the adapter.

When a remote adapter receives this shutdown notification, the remote adapter calls DoRemoteManagerShutdown to handle the notification.

Note: Subclasses of TTetheringAdapter implement NotifyShutdown. For example, TTetheringNetworkAdapterCommon.NotifyShutdown.

See Also