System.Bluetooth.TBluetoothLEDevice.DoSetCharacteristicNotification
Delphi
function DoSetCharacteristicNotification(const ACharacteristic: TBluetoothGattCharacteristic; Enable: Boolean): Boolean; virtual; abstract;
C++
virtual bool __fastcall DoSetCharacteristicNotification(TBluetoothGattCharacteristic* const ACharacteristic, bool Enable) = 0 ;
プロパティ
種類 | 可視性 | ソース | ユニット | 親 |
---|---|---|---|---|
function | protected | System.Bluetooth.pas System.Bluetooth.hpp |
System.Bluetooth | TBluetoothLEDevice |
説明
指定されたキャラクタリスティックの変更通知を有効にして、リモート デバイス上でキャラクタリスティックが変更されると、そのキャラクタリスティックのデータがユーザー側で自動的に更新されるようにするかどうかを決定します。する場合は True
、しない場合は False
を返します。
キャラクタリスティックの変更通知を有効にする場合は、OnCharacteristicRead イベントを処理すると、キャラクタリスティックのデータの自動更新を追跡できます。
SetCharacteristicNotification から DoSetCharacteristicNotification が呼び出されます。
- メモ: これは、TBluetoothLEDevice のプラットフォーム固有のサブクラスで実装される抽象メソッドです。