TwclGattLocalCharacteristicProperty Enumeration

The enumeration represents the GATT local characteristic properties, as defined by the GATT profile.

Namespace: wclBluetooth
type
 TwclGattLocalCharacteristicProperty = (
 cpAuthenticatedSignedWritable,
 cpBroadcastable,
 cpExtendedProperties,
 cpIndicatable,
 cpNotifiable,
 cpReadable,
 cpReliableWritable,
 cpWritableAuxiliaries,
 cpWritable,
 cpWritableWithoutResponse
 );

The TwclGattLocalCharacteristicProperty type exposes the following members.

Show:
 NameDescription
cpAuthenticatedSignedWritable

The characteristic supports signed writes.

cpBroadcastable

The characteristic supports broadcasting.

cpExtendedProperties

The ExtendedProperties Descriptor is present.

cpIndicatable

The characteristic is indicatable.

cpNotifiable

The characteristic is notifiable.

cpReadable

The characteristic is readable.

cpReliableWritable

The characteristic supports reliable writes.

cpWritable

The characteristic is writable.

cpWritableAuxiliaries

The characteristic has writable auxiliaries.

cpWritableWithoutResponse

The characteristic supports Write Without Response.

Top