OpenNETCF Smart Device Framework 2.3
This class encapsulates a low resolution Timer that is designed to be fired on large intervals (from seconds to even days).

Remarks

Unlike the Forms or Threading Timers, if the device is asleep when the Tick occurs, the device will wake and the Tick handler will run.

Namespace:  OpenNETCF.WindowsCE
Assembly:  OpenNETCF.WindowsCE (in OpenNETCF.WindowsCE.dll) Version: 2.3.0.0

Syntax

C#
public class LargeIntervalTimer : IDisposable
Visual Basic (Declaration)
Public Class LargeIntervalTimer _
	Implements IDisposable
Visual Basic (Usage)
Dim instance As LargeIntervalTimer
Visual C++
public ref class LargeIntervalTimer : IDisposable
J#
public class LargeIntervalTimer implements IDisposable
JScript
public class LargeIntervalTimer implements IDisposable
JavaScript
OpenNETCF.WindowsCE.LargeIntervalTimer = function();

Type.createClass(
	'OpenNETCF.WindowsCE.LargeIntervalTimer',
	null,
	IDisposable);

Inheritance Hierarchy

System..::.Object
  OpenNETCF.WindowsCE..::.LargeIntervalTimer

See Also