Table of Contents

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 = 64

The characteristic supports signed writes.

Broadcast = 1

The characteristic supports broadcasting its value.

ExtendedProperties = 128

The characteristic has extended properties.

Indicate = 32

The characteristic supports indications (with acknowledgment from the client).

None = 0

No properties are set.

Notify = 16

The characteristic supports notifications (without acknowledgment from the client).

Read = 2

The characteristic value can be read.

ReliableWrite = 256

The characteristic supports reliable writes (queued writes with verification).

WritableAuxiliaries = 512

The characteristic's User Description descriptor is writable.

Write = 8

The characteristic value can be written.

WriteWithoutResponse = 4

The characteristic value can be written without response.