GattCharacteristic.ValueChanged イベント
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
アプリは、クライアント特性構成記述子を設定した後、デバイスから通知または表示を受信したときにイベントを受信するためにイベント ハンドラーを登録できます。
// Register
event_token ValueChanged(TypedEventHandler<GattCharacteristic, GattValueChangedEventArgs const&> const& handler) const;
// Revoke with event_token
void ValueChanged(event_token const* cookie) const;
// Revoke with event_revoker
GattCharacteristic::ValueChanged_revoker ValueChanged(auto_revoke_t, TypedEventHandler<GattCharacteristic, GattValueChangedEventArgs const&> const& handler) const;
public event TypedEventHandler<GattCharacteristic,GattValueChangedEventArgs> ValueChanged;
function onValueChanged(eventArgs) { /* Your code */ }
gattCharacteristic.addEventListener("valuechanged", onValueChanged);
gattCharacteristic.removeEventListener("valuechanged", onValueChanged);
- or -
gattCharacteristic.onvaluechanged = onValueChanged;
Public Custom Event ValueChanged As TypedEventHandler(Of GattCharacteristic, GattValueChangedEventArgs)
イベントの種類
Windows の要件
アプリの機能 |
bluetooth
|
注釈
GattValueChangedEventArgs オブジェクトは、Bluetooth LE デバイスによって送信される特性値変更通知と表示イベントを処理するために使用される ValueChanged イベント ハンドラーによって受信される引数を表します。