System.Bluetooth.TBluetoothLEDevice.DoWriteCharacteristic

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function DoWriteCharacteristic(const ACharacteristic: TBluetoothGattCharacteristic): Boolean; virtual; abstract;

C++

virtual bool __fastcall DoWriteCharacteristic(TBluetoothGattCharacteristic* const ACharacteristic) = 0 ;

Properties

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

Description

Finds an existing characteristic of the remote device with the same UUID as the UUID of the specified characteristic, and replaces the data of the existing characteristic with the data of the specified characteristic.

Note: This is an abstract method that platform-specific subclasses of TBluetoothLEDevice implement.

WriteCharacteristic calls DoWriteCharacteristic.

See Also