System.Bluetooth.TBluetoothProperty

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TBluetoothProperty = (Broadcast, ExtendedProps, Notify, Indicate, Read, Write, WriteNoResponse, SignedWrite);

C++

enum class DECLSPEC_DENUM TBluetoothProperty : unsigned char { Broadcast, ExtendedProps, Notify, Indicate, Read, Write, WriteNoResponse, SignedWrite };

Properties

Type Visibility Source Unit Parent
enum public
System.Bluetooth.pas
System.Bluetooth.hpp
System.Bluetooth System.Bluetooth

Description

Enumerates possible properties of characteristics.

The possible values are the following.

Property Meaning Platform
Broadcast The characteristic is broadcastable. Windows / OS X / iOS / Android
ExtendedProps The characteristic has extended properties. OS X / iOS / Android
Notify The characteristic supports notification. Windows / OS X / iOS / Android
Indicate The characteristic supports indication. Windows / OS X / iOS / Android
Read The characteristic is readable. Windows / OS X / iOS / Android
Write The characteristic can be written. Windows / OS X / iOS / Android
WriteNoResponse The characteristic can be written without response. Windows / OS X / iOS / Android
SignedWrite The characteristic supports writing with signature. Windows / OS X / iOS / Android

See Also