SDownload.Dialogs.DownloadProgressDialog.DownloadProgressDialog C# (CSharp) Method

DownloadProgressDialog() public method

Create the download progress dialog
public DownloadProgressDialog ( String url, int size ) : System
url String The remote url to download
size int The size of the remote resource to download
return System
        public DownloadProgressDialog(String url, int size)
        {
            InitializeComponent();

            _size = size;
            _url = url;
            LastException = null;

            Show();
        }