PowerBroadcastStatus Enum

Definition

Indicates the system's power status.

public enum class PowerBroadcastStatus
public enum PowerBroadcastStatus
type PowerBroadcastStatus = 
Public Enum PowerBroadcastStatus
Inheritance
PowerBroadcastStatus

Fields

BatteryLow 9

Battery power is low.

OemEvent 11

An Advanced Power Management (APM) BIOS signaled an APM OEM event.

PowerStatusChange 10

A change in the power status of the computer is detected, such as a switch from battery power to A/C. The system also broadcasts this event when remaining battery power slips below the threshold specified by the user or if the battery power changes by a specified percentage.

QuerySuspend 0

The system has requested permission to suspend the computer. An application that grants permission should carry out preparations for the suspension before returning.

QuerySuspendFailed 2

The system was denied permission to suspend the computer. This status is broadcast if any application or driver denied a previous QuerySuspend status.

ResumeAutomatic 18

The computer has woken up automatically to handle an event. If the system detects any user activity after broadcasting ResumeAutomatic, it broadcasts a ResumeSuspend event to let applications know they can resume full interaction with the user.

ResumeCritical 6

The system has resumed operation after a critical suspension caused by a failing battery. Because a critical suspension occurs without prior notification, resources and data previously available may not be present when the application receives this event. The application should attempt to restore its state to the best of its ability.

ResumeSuspend 7

The system has resumed operation after being suspended.

Suspend 4

The computer is about to enter a suspended state. This event is typically broadcast when all applications and installable drivers have returned true to a previous QuerySuspend state.

Remarks

PowerBroadcastStatus is used by the ServiceBase class to indicate a change in the system's power status. You can design your application to react to any power status change.

Applies to

See also