Battery.ReportUpdated É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 charge, la capacité ou la status d’une batterie change.
// Register
event_token ReportUpdated(TypedEventHandler<Battery, IInspectable const&> const& handler) const;
// Revoke with event_token
void ReportUpdated(event_token const* cookie) const;
// Revoke with event_revoker
Battery::ReportUpdated_revoker ReportUpdated(auto_revoke_t, TypedEventHandler<Battery, IInspectable const&> const& handler) const;
public event TypedEventHandler<Battery,object> ReportUpdated;
function onReportUpdated(eventArgs) { /* Your code */ }
battery.addEventListener("reportupdated", onReportUpdated);
battery.removeEventListener("reportupdated", onReportUpdated);
- or -
battery.onreportupdated = onReportUpdated;
Public Custom Event ReportUpdated As TypedEventHandler(Of Battery, Object)
Type d'événement
TypedEventHandler<Battery,IInspectable>
Remarques
L’événement ReportUpdated est déclenché par toute modification de status, de débit ou de capacité d’alimentation sur l’une des batteries connectées à l’appareil. Cela se produit généralement immédiatement pour les changements d’état, et périodiquement pour tous les autres changements.