private void AddFiles() { string[] strArray; if (CopyPasteHandler.GetJobType(out strArray) == this.wrapper.BitsJob.JobType) { this.wrapper.FileList = strArray; this.bitsJobDetails.AddFilesOnJob(); } }
public void PasteUrl() { string[] strArray; JobType jobType = CopyPasteHandler.GetJobType(out strArray); if (jobType != JobType.Unknown) { this.CreateNewJob(jobType, strArray); } }