System.Net.TimerThread.InfiniteTimer.Cancel C# (CSharp) 메소드

Cancel() 개인적인 메소드

Cancels the timer. Returns true the first time, false after that.

private Cancel ( ) : bool
리턴 bool
            internal override bool Cancel()
            {
                return Interlocked.Exchange(ref _cancelled, 1) == 0;
            }
        }
TimerThread.InfiniteTimer