Lamp.AvailabilityChanged É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 disponibilité de l’appareil de lampe change.
// Register
event_token AvailabilityChanged(TypedEventHandler<Lamp, LampAvailabilityChangedEventArgs const&> const& handler) const;
// Revoke with event_token
void AvailabilityChanged(event_token const* cookie) const;
// Revoke with event_revoker
Lamp::AvailabilityChanged_revoker AvailabilityChanged(auto_revoke_t, TypedEventHandler<Lamp, LampAvailabilityChangedEventArgs const&> const& handler) const;
public event TypedEventHandler<Lamp,LampAvailabilityChangedEventArgs> AvailabilityChanged;
function onAvailabilityChanged(eventArgs) { /* Your code */ }
lamp.addEventListener("availabilitychanged", onAvailabilityChanged);
lamp.removeEventListener("availabilitychanged", onAvailabilityChanged);
- or -
lamp.onavailabilitychanged = onAvailabilityChanged;
Public Custom Event AvailabilityChanged As TypedEventHandler(Of Lamp, LampAvailabilityChangedEventArgs)