Share via


BluetoothLEAdvertisementWatcher.Received 事件

定义

收到有关新蓝牙 LE 播发事件的通知。

// Register
event_token Received(TypedEventHandler<BluetoothLEAdvertisementWatcher, BluetoothLEAdvertisementReceivedEventArgs const&> const& handler) const;

// Revoke with event_token
void Received(event_token const* cookie) const;

// Revoke with event_revoker
BluetoothLEAdvertisementWatcher::Received_revoker Received(auto_revoke_t, TypedEventHandler<BluetoothLEAdvertisementWatcher, BluetoothLEAdvertisementReceivedEventArgs const&> const& handler) const;
public event TypedEventHandler<BluetoothLEAdvertisementWatcher,BluetoothLEAdvertisementReceivedEventArgs> Received;
function onReceived(eventArgs) { /* Your code */ }
bluetoothLEAdvertisementWatcher.addEventListener("received", onReceived);
bluetoothLEAdvertisementWatcher.removeEventListener("received", onReceived);
- or -
bluetoothLEAdvertisementWatcher.onreceived = onReceived;
Public Custom Event Received As TypedEventHandler(Of BluetoothLEAdvertisementWatcher, BluetoothLEAdvertisementReceivedEventArgs) 

事件类型

Windows 要求

应用功能
bluetooth

适用于

另请参阅