System.Bluetooth.TBluetoothLEManager.DoDiscoveryEnd

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure DoDiscoveryEnd(const Sender: TObject; const ADeviceList: TBluetoothLEDeviceList); virtual;

C++

virtual void __fastcall DoDiscoveryEnd(System::TObject* const Sender, TBluetoothLEDeviceList* const ADeviceList);

Properties

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

Description

Dispatcher of the OnDiscoveryEnd event.

When you call StartDiscovery, you start a discovery operation to find remote devices using Bluetooth. When the discovery operation finishes, your manager calls DoDiscoveryEnd.

This event dispatcher receives the following parameters:

DoDiscoveryEnd:

  1. Changes the value of FLastDiscoveredLETimeStamp to the current time.
  2. Filters the list of devices by services, if provided with the list of services.
  3. Triggers the OnDiscoveryEnd event, with Sender and ADeviceList as arguments.

See Also