Ejemplo n.º 1
0
 public void TestUtf8On(string host, int port, FtpsSecurityProtocol protocol,
                        string user, string pwd, string server)
 {
     using (FtpsClient c = new FtpsClient(host, port, protocol))
     {
         c.AlwaysAcceptServerCertificate = true;
         c.Open(user, pwd);
         Assert.IsTrue(c.IsConnected);
         c.SetUtf8On();
         Assert.IsTrue(c.Encoding == Encoding.UTF8);
     }
 }