System.Bluetooth.TBluetoothLEDevice.DoOnDescriptorWrite

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure DoOnDescriptorWrite(const ADescriptor: TBluetoothGattDescriptor; AGattStatus: TBluetoothGattStatus); virtual;

C++

virtual void __fastcall DoOnDescriptorWrite(TBluetoothGattDescriptor* const ADescriptor, TBluetoothGattStatus AGattStatus);

Properties

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

Description

Dispatcher of the OnDescriptorWrite event.

DoOnDescriptorWrite is called when the data of a descriptor from a remote device is written to the remote device.

You start a write operation using WriteDescriptor.

This event dispatcher receives the following parameters:

  • ADescriptor is the descriptor that has been written.
  • AGattStatus is the exit status of the write operation.

See Also