System.Bluetooth.TBluetoothGattDescriptor.DoSetIndication

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure DoSetIndication(const AValue: Boolean); virtual; abstract;

C++

virtual void __fastcall DoSetIndication(const bool AValue) = 0 ;

Properties

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

Description

Defines whether the remote server is configured to send updates of the characteristic value as the value changes, and wait for your client to confirm that the new value was successfully received (True); or not (False).

You can only call DoSetIndication if the kind of the descriptor is ClientConfiguration.

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

See Also