System.Bluetooth.Components.TBluetoothLE.DoOnEndDiscoverDevices

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure DoOnEndDiscoverDevices(const Sender: TObject; const ADeviceList: TBluetoothLEDeviceList);

C++

void __fastcall DoOnEndDiscoverDevices(System::TObject* const Sender, System::Bluetooth::TBluetoothLEDeviceList* const ADeviceList);

Properties

Type Visibility Source Unit Parent
procedure
function
protected
System.Bluetooth.Components.pas
System.Bluetooth.Components.hpp
System.Bluetooth.Components TBluetoothLE

Description

Dispatcher of the OnEndDiscoverDevices event.

DoOnEndDiscoverDevices is called by DoInternalDiscoveryEnd, the handler of the OnDiscoveryEnd event of the manager of your component that occurs as a result of a previous call to DiscoverDevices.

This event dispatcher receives the following parameters:

  • Sender is the manager of your component.
  • ADeviceList is a list of devices that have been discovered.

See Also