Brass9.Threading.IntervalTask.StopTimer C# (CSharp) 메소드

StopTimer() 공개 메소드

Stops the timer. If the background task is running when this is called, it's left be so it can finish it's work, but will not be woken up to start again until SetTimerInterval() is called with a positive value. Convenience method. This has the same effect as calling SetTimerInterval(Timeout.Infinite);
public StopTimer ( ) : void
리턴 void
		public void StopTimer()
		{
			intervalTimer.Stop();
		}