次の方法で共有


BackgroundEnergyManager.RecentEnergyUsageIncreased イベント

定義

バックグラウンド タスクのエネルギー使用量が大幅に増加したときに発生します。

// Register
static event_token RecentEnergyUsageIncreased(EventHandler<IInspectable> const& handler) const;

// Revoke with event_token
static void RecentEnergyUsageIncreased(event_token const* cookie) const;

// Revoke with event_revoker
static BackgroundEnergyManager::RecentEnergyUsageIncreased_revoker RecentEnergyUsageIncreased(auto_revoke_t, EventHandler<IInspectable> const& handler) const;
/// [add: Windows.Foundation.Metadata.Deprecated("Background Energy Manager has been deprecated. For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 393216, "Windows.Foundation.UniversalApiContract")]
/// [remove: Windows.Foundation.Metadata.Deprecated("Background Energy Manager has been deprecated. For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 393216, "Windows.Foundation.UniversalApiContract")]
// Register
static event_token RecentEnergyUsageIncreased(EventHandler<IInspectable> const& handler) const;

// Revoke with event_token
static void RecentEnergyUsageIncreased(event_token const* cookie) const;

// Revoke with event_revoker
static BackgroundEnergyManager::RecentEnergyUsageIncreased_revoker RecentEnergyUsageIncreased(auto_revoke_t, EventHandler<IInspectable> const& handler) const;
public static event System.EventHandler<object> RecentEnergyUsageIncreased;
[add: Windows.Foundation.Metadata.Deprecated("Background Energy Manager has been deprecated. For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 393216, "Windows.Foundation.UniversalApiContract")]
[remove: Windows.Foundation.Metadata.Deprecated("Background Energy Manager has been deprecated. For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 393216, "Windows.Foundation.UniversalApiContract")]
public static event System.EventHandler<object> RecentEnergyUsageIncreased;
function onRecentEnergyUsageIncreased(eventArgs) { /* Your code */ }
Windows.System.Power.BackgroundEnergyManager.addEventListener("recentenergyusageincreased", onRecentEnergyUsageIncreased);
Windows.System.Power.BackgroundEnergyManager.removeEventListener("recentenergyusageincreased", onRecentEnergyUsageIncreased);
- or -
Windows.System.Power.BackgroundEnergyManager.onrecentenergyusageincreased = onRecentEnergyUsageIncreased;
Public Shared Custom Event RecentEnergyUsageIncreased As EventHandler(Of Object) 

イベントの種類

属性

注釈

通知は、終了の使用レベルまで大幅に増加するたびに送信されます。

適用対象