Tmds.SockJS.CancellableTimer.Cancel C# (CSharp) Method

Cancel() public method

public Cancel ( ) : void
return void
        public void Cancel()
        {
            IsCancelled = true;
            _timer?.Dispose();
            _timer = null;
        }