enum Core::Bluetooth::CharacteristicProperties

#include <coregattshared.h>

enum CharacteristicProperties
{
    kNone                      = 0,
    kBroadcast                 = 1,
    kRead                      = 1 < <1,
    kWriteWithoutResponse      = 1 < <2,
    kWrite                     = 1 < <3,
    kNotify                    = 1 < <4,
    kIndicate                  = 1 < <5,
    kAuthenticatedSignedWrites = 1 < <6,
    kExtendedProperties        = 1 < <7,
    kReliableWrites            = 1 < <8,
    kWritableAuxiliaries       = 1 < <9,
};