BluetoothLEDevice.ConnectionStatusChanged Evento

Definição

Ocorre quando a conexão status para o dispositivo foi alterada.

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

Tipo de evento

Requisitos do Windows

Funcionalidades do aplicativo
bluetooth

Comentários

Em seu manipulador para esse evento, para obter a conexão status consultar a propriedade BluetoothLEDevice.ConnectionStatus no BluetoothLEDevice que é passado para o manipulador.

Aplica-se a