Table of Contents

Enum CharacteristicPermissions

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

Defines the permissions required to access a GATT characteristic.

[Flags]
public enum CharacteristicPermissions

Fields

None = 0

No permissions are required.

Read = 1

Reading the characteristic is allowed.

ReadEncrypted = 2

Reading the characteristic requires an encrypted connection.

ReadEncryptedMitm = 4

Reading the characteristic requires an encrypted connection with MITM protection.

Write = 8

Writing to the characteristic is allowed.

WriteEncrypted = 16

Writing to the characteristic requires an encrypted connection.

WriteEncryptedMitm = 32

Writing to the characteristic requires an encrypted connection with MITM protection.

WriteSigned = 64

Writing to the characteristic requires a signed write.

WriteSignedMitm = 128

Writing to the characteristic requires a signed write with MITM protection.