Esempio n. 1
0
 private void AddFiles()
 {
     string[] strArray;
     if (CopyPasteHandler.GetJobType(out strArray) == this.wrapper.BitsJob.JobType)
     {
         this.wrapper.FileList = strArray;
         this.bitsJobDetails.AddFilesOnJob();
     }
 }
Esempio n. 2
0
        public void PasteUrl()
        {
            string[] strArray;
            JobType  jobType = CopyPasteHandler.GetJobType(out strArray);

            if (jobType != JobType.Unknown)
            {
                this.CreateNewJob(jobType, strArray);
            }
        }