Lamp.AvailabilityChanged Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Occurs when the availability of the lamp device changes.
// 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)