DeviceTriggerResult Enum

Definition

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

Allowed 0

The device background task was triggered.

DeniedBySystem 2

The device background task was denied due to system policy.

DeniedByUser 1

The device background task was denied by the user.

LowBattery 3

The device background task cannot run because the battery is low.

Applies to