/// <remarks/> public void DownloadAsync(Download Download1, object userState) { if ((this.DownloadOperationCompleted == null)) { this.DownloadOperationCompleted = new System.Threading.SendOrPostCallback(this.OnDownloadOperationCompleted); } this.InvokeAsync("Download", new object[] { Download1}, this.DownloadOperationCompleted, userState); }
/// <remarks/> public void DownloadAsync(Download Download1) { this.DownloadAsync(Download1, null); }