System.Bluetooth.TBluetoothLEManager.DoDiscoveryLEEnd

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure DoDiscoveryLEEnd(const Sender: TObject; const ADeviceList: TBluetoothLEDeviceList); virtual; deprecated 'Use DoDiscoveryEnd';

C++

virtual void __fastcall DoDiscoveryLEEnd _DEPRECATED_ATTRIBUTE1("Use 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

Warning: DoDiscoveryLEEnd is deprecated. Please use DoDiscoveryEnd.

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 DoDiscoveryLEEnd.

This event dispatcher receives the following parameters:

DoDiscoveryLEEnd:

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

See Also