示例#1
0
文件: FTPTask.cs 项目: dotob/wop
 public override ITask CloneNonDynamicStuff()
 {
     FTPTask t = new FTPTask();
       t.IsEnabled = this.IsEnabled;
       t.Server = this.Server;
       t.ServerDirectory = this.ServerDirectory;
       t.UserName = this.UserName;
       t.Password = this.Password;
       return t;
 }
示例#2
0
        public override ITask CloneNonDynamicStuff()
        {
            FTPTask t = new FTPTask();

            t.IsEnabled       = this.IsEnabled;
            t.Server          = this.Server;
            t.ServerDirectory = this.ServerDirectory;
            t.UserName        = this.UserName;
            t.Password        = this.Password;
            return(t);
        }