Partager via


BluetoothLEDevice.NameChanged Événement

Définition

Se produit lorsque le nom de l’appareil a changé.

// 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) 

Type d'événement

Configuration requise pour Windows

Fonctionnalités de l’application
bluetooth

Remarques

Dans votre gestionnaire pour cet événement, pour obtenir le nom, interrogez la propriété BluetoothLEDevice.Name sur l’appareil BluetoothLEDevice passé à votre gestionnaire.

S’applique à