System.Reactive.PlatformServices.PeriodicTimerSystemClockMonitor
(Infrastructure) Monitors for system clock changes based on a periodic timer.
namespace System.Reactive.PlatformServices
{
public class PeriodicTimerSystemClockMonitor : INotifySystemClockChanged
{
public event EventHandler<SystemClockChangedEventArgs> SystemClockChanged;
public PeriodicTimerSystemClockMonitor(TimeSpan period);
}
}