Table of Contents

Enum BluetoothCharacteristicPermissions

Namespace
Bluetooth.Abstractions.Broadcasting.Enums
Assembly
Bluetooth.Abstractions.Broadcasting.dll

Defines permissions required for accessing Bluetooth GATT characteristic operations.

[Flags]
public enum BluetoothCharacteristicPermissions

Fields

None = 0

No permissions required.

Read = 1

Permission to read the characteristic value.

ReadAuthenticated = 8

Permission to read the characteristic value with authenticated encryption required (MITM protection).

ReadEncrypted = 4

Permission to read the characteristic value with encryption required.

Write = 2

Permission to write the characteristic value.

WriteAuthenticated = 32

Permission to write the characteristic value with authenticated encryption required (MITM protection).

WriteEncrypted = 16

Permission to write the characteristic value with encryption required.

WriteSigned = 64

Permission to write the characteristic value with signature required.

WriteSignedAuthenticated = 128

Permission to write the characteristic value with authenticated signature required.