共用方式為


BluetoothLEDevice.NameChanged 事件

定義

發生于裝置的名稱已變更時。

// Register
event_token NameChanged(TypedEventHandler<BluetoothLEDevice, IInspectable const&> const& handler) const;

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

// Revoke with event_revoker
BluetoothLEDevice::NameChanged_revoker NameChanged(auto_revoke_t, TypedEventHandler<BluetoothLEDevice, IInspectable const&> const& handler) const;
public event TypedEventHandler<BluetoothLEDevice,object> NameChanged;
function onNameChanged(eventArgs) { /* Your code */ }
bluetoothLEDevice.addEventListener("namechanged", onNameChanged);
bluetoothLEDevice.removeEventListener("namechanged", onNameChanged);
- or -
bluetoothLEDevice.onnamechanged = onNameChanged;
Public Custom Event NameChanged As TypedEventHandler(Of BluetoothLEDevice, Object) 

事件類型

Windows 需求

應用程式功能
bluetooth

備註

在此事件的處理常式中,若要取得傳遞給處理常式之BluetoothLEDeviceBluetoothLEDevice.Name屬性的名稱查詢。

適用於