BF2Statistics.ProgressDialog.Close C# (CSharp) Метод

Close() публичный Метод

Stops the timer and closes the progress dialog.
public Close ( ) : void
Результат void
        public void Close()
        {
            // Stop the progress dialog
            if (_state != ProgressDialogState.Stopped)
            {
                _nativeProgressDialog.StopProgressDialog();
                _state = ProgressDialogState.Stopped;
            }

            CleanUp();
        }