DeviceTriggerResult Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Indicates whether the device background task operation was allowed or denied, and if it was denied specifies the reason.
public enum class DeviceTriggerResult
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 65536)]
enum class DeviceTriggerResult
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 65536)]
public enum DeviceTriggerResult
var value = Windows.ApplicationModel.Background.DeviceTriggerResult.allowed
Public Enum DeviceTriggerResult
- Inheritance
-
DeviceTriggerResult
- Attributes
Windows requirements
Device family |
Windows 10 (introduced in 10.0.10240.0)
|
API contract |
Windows.Foundation.UniversalApiContract (introduced in v1.0)
|
Fields
Name | Value | Description |
---|---|---|
Allowed | 0 | The device background task was triggered. |
DeniedByUser | 1 | The device background task was denied by the user. |
DeniedBySystem | 2 | The device background task was denied due to system policy. |
LowBattery | 3 | The device background task cannot run because the battery is low. |