BluetoothLEDevice.ConnectionStatusChanged Événement
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Se produit lorsque la status de connexion pour l’appareil a changé.
// Register
event_token ConnectionStatusChanged(TypedEventHandler<BluetoothLEDevice, IInspectable const&> const& handler) const;
// Revoke with event_token
void ConnectionStatusChanged(event_token const* cookie) const;
// Revoke with event_revoker
BluetoothLEDevice::ConnectionStatusChanged_revoker ConnectionStatusChanged(auto_revoke_t, TypedEventHandler<BluetoothLEDevice, IInspectable const&> const& handler) const;
public event TypedEventHandler<BluetoothLEDevice,object> ConnectionStatusChanged;
function onConnectionStatusChanged(eventArgs) { /* Your code */ }
bluetoothLEDevice.addEventListener("connectionstatuschanged", onConnectionStatusChanged);
bluetoothLEDevice.removeEventListener("connectionstatuschanged", onConnectionStatusChanged);
- or -
bluetoothLEDevice.onconnectionstatuschanged = onConnectionStatusChanged;
Public Custom Event ConnectionStatusChanged As TypedEventHandler(Of BluetoothLEDevice, Object)
Type d'événement
TypedEventHandler<BluetoothLEDevice,IInspectable>
Configuration requise pour Windows
Fonctionnalités de l’application |
bluetooth
|
Remarques
Dans votre gestionnaire pour cet événement, pour obtenir la connexion status interrogez la propriété BluetoothLEDevice.ConnectionStatus sur le BluetoothLEDevice transmis à votre gestionnaire.