TwclGattCharacteristic Record

The structure describes a Bluetooth Low Energy (LE) generic attribute (GATT) profile characteristic.

Namespace: wclBluetooth
type
 TwclGattCharacteristic = record
 end;

The TwclGattCharacteristic type exposes the following members.

Show:
 NameDescription
Handle

The handle to the Bluetooth LE GATT profile attributes.

HasExtendedProperties

The characteristic has extended properties, which will be presented through a Characteristic Extended Properties descriptor.

IsBroadcastable

The characteristic can be broadcast.

IsIndicatable

The characteristic can be updated by the device through Handle Value Indications, and the new value will be returned through the event.

IsNotifiable

The characteristic can be updated by the device through Handle Value Notifications, and the new value will be returned through the event.

IsReadable

The characteristic can be read.

IsSignedWritable

The characteristic can be signed writable.

IsWritable

The characteristic can be written to.

IsWritableWithoutResponse

The characteristic can be written to without requiring a response.

ServiceHandle

The handle to the Bluetooth LE GATT profile service.

Uuid

The Universally Unique ID (UUID) of the characteristic.

ValueHandle

The handle to the Bluetooth LE GATT profile characteristic value.

Top