System.Bluetooth.TBluetoothGattStatus

提供: RAD Studio API Documentation
移動先: 案内検索

Delphi

TBluetoothGattStatus = (Success = 0, ReadNotPermitted = 2, WriteNotPermitted = 3, InsufficientAutentication = 5,
RequestNotSupported = 6, InvalidOffset = 7, InvalidAttributeLength = 13, InsufficientEncryption = 15, Failure = 257);

C++

enum class DECLSPEC_DENUM TBluetoothGattStatus : unsigned short { Success, ReadNotPermitted = 2, WriteNotPermitted, InsufficientAutentication = 5, RequestNotSupported, InvalidOffset, InvalidAttributeLength = 13, InsufficientEncryption = 15, Failure = 257 };

プロパティ

種類 可視性 ソース ユニット
enum public
System.Bluetooth.pas
System.Bluetooth.hpp
System.Bluetooth System.Bluetooth


説明

Bluetooth LE 操作が終わった時点での状態です。

取り得る状態を次の表に示します。

状態

説明

Success

操作は正常に終了しました。

ReadNotPermitted

読み取り操作は許可されませんでした。

WriteNotPermitted

書き込み操作は許可されませんでした。

InsufficientAutentication

認証データは有効ですが、操作を実行することは認可されていません。必要な権限がありません。

RequestNotSupported

操作はサポートされていません。

InvalidOffset

操作で指定されているオフセットが無効です。

InvalidAttributeLength

対象の属性では、指定された値の長さが無効です。

InsufficientEncryption

操作に使用された暗号化の強度が不十分です。

Failure

特定されていないエラーが発生したため操作を正常に実行できませんでした。

関連項目