Exemple #1
0
 public FTPClient(string url, string username = null, string password = null)
 {
     UrlEntity = new FTPUrl {
         Url = url
     };
     Username = username;
     Password = password;
 }
Exemple #2
0
 public FTPClient(string ip = null, int port = 21, string filePath = null, string username = null, string password = null)
 {
     UrlEntity = new FTPUrl {
         IP = ip, Port = port, Path = filePath
     };
     Username = username;
     Password = password;
 }