确定Timer是否正在运行

时间:2014-04-13 16:22:21

标签: c# timer system.timers.timer

在此Link中,它显示了如何确定计时器是否正在运行。对我来说它不起作用。

我在静态类中声明了计时器,如图所示

public static class ServiceGlobals // Globals
{

    public static System.Timers.Timer _timer = new System.Timers.Timer();
}

}

在启动我的服务时,我设置了计时器属性

 protected override void OnStart(string[] args)
        {                  

                    ServiceGlobals._timer.AutoReset = false;
                    ServiceGlobals._timer.Interval = (3000);
                    ServiceGlobals._timer.Elapsed += new System.Timers.ElapsedEventHandler(_timer_Elapsed);
                    ServiceGlobals._timer.Enabled = true;
                    ServiceGlobals._timer.Start(); // Start timer                  
        }

然后我检查它是否在我的一个方法中运行,但即使它正在运行,代码总是假的

if (ServiceGlobals._timer.Enabled) // Check if the timer is running
{
    // Return error.........

}

1 个答案:

答案 0 :(得分:1)

您一定错过了链接线程的这一部分:

"如果Timer.AutoReset为true,则在第一次计时器到期时,Enabled将自动设置为false。"