System.Bluetooth.Components.TBluetoothLE.DoOnDiscoverLEDevice

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure DoOnDiscoverLEDevice(const Sender: TObject; const ADevice: TBluetoothLEDevice; Rssi: Integer; const ScanResponse: TScanResponse);

C++

void __fastcall DoOnDiscoverLEDevice(System::TObject* const Sender, System::Bluetooth::TBluetoothLEDevice* const ADevice, int Rssi, System::Bluetooth::TScanResponse* const ScanResponse);

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 OnDiscoverLEDevice event.

It is called at the end of the execution of the DoInternalDiscoverLEDevice dispatcher.

This event dispatcher receives the following parameters:

  • Sender is the current adapter.
  • ADevice is the device discovered.
  • Rssi holds the value of the current received signal strength indicator.
  • ScanResponse is the data advertised by the device.

See Also