BluetoothLEDevice.NameChanged 事件
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
發生于裝置的名稱已變更時。
// 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)
事件類型
TypedEventHandler<BluetoothLEDevice,IInspectable>
Windows 需求
應用程式功能 |
bluetooth
|
備註
在此事件的處理常式中,若要取得傳遞給處理常式之BluetoothLEDevice上BluetoothLEDevice.Name屬性的名稱查詢。