BluetoothLEDevice.GattServicesChanged イベント
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
デバイスでサポートされている GATT サービスの一覧が変更されたときに発生します。
// Register
event_token GattServicesChanged(TypedEventHandler<BluetoothLEDevice, IInspectable const&> const& handler) const;
// Revoke with event_token
void GattServicesChanged(event_token const* cookie) const;
// Revoke with event_revoker
BluetoothLEDevice::GattServicesChanged_revoker GattServicesChanged(auto_revoke_t, TypedEventHandler<BluetoothLEDevice, IInspectable const&> const& handler) const;
public event TypedEventHandler<BluetoothLEDevice,object> GattServicesChanged;
function onGattServicesChanged(eventArgs) { /* Your code */ }
bluetoothLEDevice.addEventListener("gattserviceschanged", onGattServicesChanged);
bluetoothLEDevice.removeEventListener("gattserviceschanged", onGattServicesChanged);
- or -
bluetoothLEDevice.ongattserviceschanged = onGattServicesChanged;
Public Custom Event GattServicesChanged As TypedEventHandler(Of BluetoothLEDevice, Object)
イベントの種類
TypedEventHandler<BluetoothLEDevice,IInspectable>
Windows の要件
アプリの機能 |
bluetooth
|
注釈
このイベントは、リモート デバイスがサービスを変更したとき、またはペアリングされていないデバイスが切断されているときに発生します。 ペアになっていないデバイス サービスを接続間でキャッシュできないため、すべてのサービスがクリアされます。
このイベントのオブジェクト パラメーターは、発生するすべてのイベントに対して null です。
このイベントのハンドラーで、サービスを利用できるようにするには、次の操作を行います。 ハンドラーに渡される BluetoothLEDevice で BluetoothLEDevice.GetGattServicesAsync を呼び出します。 GetGattServicesAsync を呼び出すときは、Cached オプションを使用します。 これを使用すると、サービスの一覧を更新し、デバイス上のサービスがなくなった場合に再初期化できます。