System.Bluetooth.TBluetoothLEDevice.DoSetCharacteristicNotification

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

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 のプラットフォーム固有のサブクラスで実装される抽象メソッドです。

関連項目