Share via


BluetoothDevice.NameChanged Evento

Definición

Se produce cuando el nombre del dispositivo ha cambiado.

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

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

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

Tipo de evento

Requisitos de Windows

Características de aplicaciones
bluetooth

Se aplica a