ForegroundEnergyManager.RecentEnergyUsageReturnedToLow Event

Definition

Occurs when the app's energy usage has decreased to a low usage level.

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

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

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

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

// Revoke with event_revoker
static ForegroundEnergyManager::RecentEnergyUsageReturnedToLow_revoker RecentEnergyUsageReturnedToLow(auto_revoke_t, EventHandler<IInspectable> const& handler) const;
public static event System.EventHandler<object> RecentEnergyUsageReturnedToLow;
[add: Windows.Foundation.Metadata.Deprecated("Foreground Energy Manager has been deprecated. For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 393216, "Windows.Foundation.UniversalApiContract")]
[remove: Windows.Foundation.Metadata.Deprecated("Foreground 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> RecentEnergyUsageReturnedToLow;
function onRecentEnergyUsageReturnedToLow(eventArgs) { /* Your code */ }
Windows.System.Power.ForegroundEnergyManager.addEventListener("recentenergyusagereturnedtolow", onRecentEnergyUsageReturnedToLow);
Windows.System.Power.ForegroundEnergyManager.removeEventListener("recentenergyusagereturnedtolow", onRecentEnergyUsageReturnedToLow);
- or -
Windows.System.Power.ForegroundEnergyManager.onrecentenergyusagereturnedtolow = onRecentEnergyUsageReturnedToLow;
Public Shared Custom Event RecentEnergyUsageReturnedToLow As EventHandler(Of Object) 

Event Type

Attributes

Remarks

An app operating at this level is consuming significantly less energy than normal and does not require throttling.

Applies to