BF2Statistics.ProgressDialog.Close C# (CSharp) Method

Close() public method

Stops the timer and closes the progress dialog.
public Close ( ) : void
return void
        public void Close()
        {
            // Stop the progress dialog
            if (_state != ProgressDialogState.Stopped)
            {
                _nativeProgressDialog.StopProgressDialog();
                _state = ProgressDialogState.Stopped;
            }

            CleanUp();
        }