コード例 #1
0
ファイル: JobDetailsForm.cs プロジェクト: 11RS/SharpBITS.NET
 private void AddFiles()
 {
     string[] strArray;
     if (CopyPasteHandler.GetJobType(out strArray) == this.wrapper.BitsJob.JobType)
     {
         this.wrapper.FileList = strArray;
         this.bitsJobDetails.AddFilesOnJob();
     }
 }
コード例 #2
0
ファイル: JobListControl.cs プロジェクト: 11RS/SharpBITS.NET
        public void PasteUrl()
        {
            string[] strArray;
            JobType  jobType = CopyPasteHandler.GetJobType(out strArray);

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