System.Bluetooth.TBluetoothLEDevice.OnDescriptorRead
Delphi
property OnDescriptorRead: TGattDescriptorEvent read FOnDescriptorRead write FOnDescriptorRead;
C++
__property TGattDescriptorEvent OnDescriptorRead = {read=FOnDescriptorRead, write=FOnDescriptorRead};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
event | public | System.Bluetooth.pas System.Bluetooth.hpp |
System.Bluetooth | TBluetoothLEDevice |
Description
Occurs when the data of a descriptor of a service from a remote device is read from the remote device.
You start a read operation using ReadDescriptor.
The event handler of OnDescriptorRead receives the following parameters:
Sender
is the remote device that provides the descriptor.ADescriptor
is the descriptor that has been read.AGattStatus
is the exit status of the read operation.