Enum CharacteristicProperties
- Namespace
- Bluetooth.Abstractions.Enums
- Assembly
- Bluetooth.Abstractions.dll
Defines the properties of a GATT characteristic, specifying the operations that can be performed on it.
[Flags]
public enum CharacteristicProperties
Fields
AuthenticatedSignedWrites = 64The characteristic supports signed writes.
Broadcast = 1The characteristic supports broadcasting its value.
ExtendedProperties = 128The characteristic has extended properties.
Indicate = 32The characteristic supports indications (with acknowledgment from the client).
None = 0No properties are set.
Notify = 16The characteristic supports notifications (without acknowledgment from the client).
Read = 2The characteristic value can be read.
ReliableWrite = 256The characteristic supports reliable writes (queued writes with verification).
WritableAuxiliaries = 512The characteristic's User Description descriptor is writable.
Write = 8The characteristic value can be written.
WriteWithoutResponse = 4The characteristic value can be written without response.