TwclGattOperationFlag Enumeration

This enumeration describes how a GATT reading operation should be executed.

Namespace: wclBluetooth
type
 TwclGattOperationFlag = (
 goNone,
 goReadFromDevice,
 goReadFromCache
 );

The TwclGattOperationFlag type exposes the following members.

Show:
 NameDescription
goNone

Use default behavior.

goReadFromCache

The value is to be read from the cache (regardless of whether it is present in the cache or not).

goReadFromDevice

The value is to be read directly from the device. This overwrites the one in the cache if one is already present.

Top