TwclGattWriteKind Enumeration

The GATT write operation mode.

Namespace: wclBluetooth
type
 TwclGattWriteKind = (
 wkWithResponse,
 wkWithoutResponse,
 wkAuto
 );

The TwclGattWriteKind type exposes the following members.

Show:
 NameDescription
wkAuto

Automatic detection of write operation mode. If a characteristic supports Write Without Response then this method will be used. Otherwise the Write With Response operation executes. The default write operation mode.

wkWithoutResponse

Execute write operation as Write Without Response if a charactersitic supports such method. If a characteristic does not support Write Without Response the wclBluetoothErrors.WCL_E_BLUETOOTH_LE_WRITE_WITHOUT_RESPONSE_NOT_SUPPORTED error returned.

wkWithResponse

Execute write operation as Write With Response.

Top