AppUpdater.AutoUpdater.Stop C# (CSharp) Method

Stop() public method

public Stop ( ) : void
return void
        public void Stop()
        {
            if (thread != null && thread.IsAlive)
            {
                log.Debug("Stopping the AutoUpdater.");
                thread.Abort();
            }

            thread = null;
        }