Compartir a través de


Radio.StateChanged Evento

Definición

Evento generado por un cambio de estado en la radio representada por este objeto. Cuando se quita una radio Bluetooth USB o se queda sin conexión, no se notifica ningún cambio de estado.

// Register
event_token StateChanged(TypedEventHandler<Radio, IInspectable const&> const& handler) const;

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

// Revoke with event_revoker
Radio::StateChanged_revoker StateChanged(auto_revoke_t, TypedEventHandler<Radio, IInspectable const&> const& handler) const;
public event TypedEventHandler<Radio,object> StateChanged;
function onStateChanged(eventArgs) { /* Your code */ }
radio.addEventListener("statechanged", onStateChanged);
radio.removeEventListener("statechanged", onStateChanged);
- or -
radio.onstatechanged = onStateChanged;
Public Custom Event StateChanged As TypedEventHandler(Of Radio, Object) 

Tipo de evento

Se aplica a