Battery.ReportUpdated 事件
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
發生于電池的充電、容量或狀態變更時。
// 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)
事件類型
TypedEventHandler<Battery,IInspectable>
備註
ReportUpdated 事件是由連線到裝置之任何電池的狀態、收費率或電源容量變更所觸發。 通常會在狀態變更時立即觸發,至於其他所有變更,則是定期觸發。