System.Bluetooth.Components.TBluetoothLE.DoOnDescriptorRead
Delphi
procedure DoOnDescriptorRead(const Sender: TObject; const ADescriptor: TBluetoothGattDescriptor;
AGattStatus: TBluetoothGattStatus);
C++
void __fastcall DoOnDescriptorRead(System::TObject* const Sender, System::Bluetooth::TBluetoothGattDescriptor* const ADescriptor, System::Bluetooth::TBluetoothGattStatus AGattStatus);
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
procedure function |
protected | System.Bluetooth.Components.pas System.Bluetooth.Components.hpp |
System.Bluetooth.Components | TBluetoothLE |
Description
Dispatcher of the OnDescriptorRead event.
DoOnDescriptorRead is called 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.
This event dispatcher 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.