System.Bluetooth.TBluetoothGattDescriptor.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create(const ACharacteristic: TBluetoothGattCharacteristic); overload;
constructor Create(const ACharacteristic: TBluetoothGattCharacteristic; const AUUID: TBluetoothUUID); overload;

C++

__fastcall TBluetoothGattDescriptor(TBluetoothGattCharacteristic* const ACharacteristic)/* overload */;
__fastcall TBluetoothGattDescriptor(TBluetoothGattCharacteristic* const ACharacteristic, const GUID &AUUID)/* overload */;

Properties

Type Visibility Source Unit Parent
constructor public
System.Bluetooth.pas
System.Bluetooth.hpp
System.Bluetooth TBluetoothGattDescriptor

Description

Creates an instance of TBluetoothGattDescriptor with the specified parameters.

Call the first overloaded Create method with the parameters described below.

Parameter Meaning
ACharacteristic The GATT characteristic this descriptor belongs to.

Call the second overloaded Create method with the parameters described below.

Parameter Meaning
ACharacteristic The GATT characteristic this descriptor belongs to.
AUUID The UUID for this descriptor.

See Also