System.Bluetooth.TBluetoothLEDevice.OnReliableWriteCompleted

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnReliableWriteCompleted: TGattOperationResultEvent read FOnReliableWriteCompleted write FOnReliableWriteCompleted;

C++

__property TGattOperationResultEvent OnReliableWriteCompleted = {read=FOnReliableWriteCompleted, write=FOnReliableWriteCompleted};

Properties

Type Visibility Source Unit Parent
event public
System.Bluetooth.pas
System.Bluetooth.hpp
System.Bluetooth TBluetoothLEDevice

Description

Occurs after a response from the remote device triggered by a previous call to ExecuteReliableWrite.

The event handler of OnReliableWriteCompleted receives the following parameters:

  • Sender is your remote device.
  • AStatus is the exit status of the reliable write operation.

See Also