System.Bluetooth.TBluetoothLEDevice.DoOnCharacteristicWrite

From RAD Studio API Documentation
Revision as of 14:46, 25 November 2014 by AChaves (talk | contribs) (55849)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Delphi

procedure DoOnCharacteristicWrite(const ACharacteristic: TBluetoothGattCharacteristic; AGattStatus: TBluetoothGattStatus); virtual;

C++

virtual void __fastcall DoOnCharacteristicWrite(TBluetoothGattCharacteristic* const ACharacteristic, TBluetoothGattStatus AGattStatus);

Properties

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

Description

Dispatcher of the OnCharacteristicWrite event.

DoOnCharacteristicWrite is called when the data of a characteristic of a service from a remote device is written to the remote device.

You start a write operation using WriteCharacteristic.

This event dispatcher receives the following parameters:

See Also