System.Bluetooth.TBluetoothGattDescriptor.UUID

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property UUID: TBluetoothUUID read GetUUID;

C++

__property GUID UUID = {read=GetUUID};

Properties

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

Description

Returns the UUID of this descriptor. The UUID is the type TBluetoothUUID. GATT characteristic descriptors contain additional information and attributes of this GATT characteristic. Descriptors can be used to describe the characteristic's features or to control certain behaviours of the characteristic.

This identifier is represented by a string literal enclosed in brackets. UUIDs must have the form "{xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx}", where each x is an hexadecimal digit (0 through 9 or A through F). For example, the UUID for the Characteristic Extended Properties is {00002900-0000-1000-8000-00805F9B34FB}.

Visit the official page for more information about standard descriptors: GATT Characteristic Descriptors.

See Also