Dev2.CustomControls.Progress.ProgressFileDownloader.StartUpdate C# (CSharp) Method

StartUpdate() public method

public StartUpdate ( string fileName, bool cancelled ) : void
fileName string
cancelled bool
return void
        public void StartUpdate(string fileName, bool cancelled)
        {
            ProgressDialog.Close();
            IsBusyDownloading = false;
            if(!cancelled && !_dontStartUpdate)
            {
                ShutDownAction(fileName);
            }
        }