コード例 #1
0
ファイル: Ftp.cs プロジェクト: quizgb/LHJ.Framework2
 public Ftp(string hostName, string userName, string password)
     : this()
 {
     this.Connection = new FtpConnection(hostName, userName, password);
 }
コード例 #2
0
ファイル: Ftp.cs プロジェクト: quizgb/LHJ.Framework2
 public Ftp(FtpConnection connection)
     : this()
 {
     this.Connection = connection;
 }
コード例 #3
0
ファイル: Ftp.cs プロジェクト: quizgb/LHJ.Framework2
 public Ftp(string hostName)
     : this()
 {
     this.Connection = new FtpConnection(hostName);
 }