Enum CharacteristicPropertyType
Represents the properties of a characteristic. It's a superset of all common platform specific properties.
TODO: CTacke: we'll need to update these with whatever the ESP supports, i'm guessing.
Assembly: Meadow.dll
View Source
[Flags]
public enum CharacteristicPropertyType
Fields
Broadcast
Characteristic value can be broadcast.
View Source
Broadcast = 1
Read
Characteristic value can be read.
View Source
Read = 2
WriteWithoutResponse
Characteristic value can be written without response.
View Source
WriteWithoutResponse = 4
Write
Characteristic can be written with response.
View Source
Write = 8
Notify
Characteristic can notify value changes without acknowledgment.
View Source
Notify = 16
Indicate
Characteristic can indicate value changes with acknowledgment.
View Source
Indicate = 32
AuthenticatedSignedWrites
Characteristic value can be written signed.
View Source
AuthenticatedSignedWrites = 64
ExtendedProperties
Indicates that more properties are set in the extended properties descriptor.
View Source
ExtendedProperties = 128
NotifyEncryptionRequired
Characteristic notifies of required encryption
View Source
NotifyEncryptionRequired = 256
IndicateEncryptionRequired
Indicates that encryption is required
View Source
IndicateEncryptionRequired = 512