ZeroInstall.MainForm.Cancel C# (CSharp) Method

Cancel() private method

Hides the window and then starts canceling the current process asynchronously.
private Cancel ( ) : void
return void
        private void Cancel()
        {
            Hide();

            _cancellationTokenSource.Cancel();
        }
    }