1 out of 3 rated this helpful - Rate this topic

TimeTrigger.TimeTrigger constructor

Initializes a new instance of a time event trigger.

Syntax


var timeTrigger = new Windows.ApplicationModel.Background.TimeTrigger(freshnessTime, oneShot);

Parameters

freshnessTime

Type: Number [JavaScript] | System.UInt32 [.NET] | uint32 [C++]

Specifies the number of minutes to wait before scheduling the background task. The system schedules the task within 15 minutes after freshnessTime elapses. If the OneShot property is false, freshnessTime specifies the interval between recurring tasks.

Note  If FreshnessTime is set to less than 15 minutes, an exception is thrown when attempting to register the background task.

oneShot

Type: Boolean [JavaScript] | System.Boolean [.NET] | Platform::Boolean [C++]

True if the time event trigger will be used once; false if it will be used each time freshnessTime elapses.

Requirements

Minimum supported client

Windows 8

Minimum supported server

Windows Server 2012

Namespace

Windows.ApplicationModel.Background
Windows::ApplicationModel::Background [C++]

Metadata

Windows.winmd

See also

TimeTrigger

 

 

Build date: 12/4/2012

© 2013 Microsoft. All rights reserved.