1

So far I have tried this

FtpWebRequest request = (FtpWebRequest)WebRequest.Create(url);
request.ServicePoint.BindIPEndPointDelegate = delegate
{
    IPAddress ip = IPAddress.Parse("127.0.0.1");
    return new IPEndPoint(ip, 0);
};
request.Method = WebRequestMethods.Ftp.Rename;

The issue is FtpWebRequest class has limited functionality where as FtpClient is more versatile. How do I bind local IpEndpoint to FtpClient class in FluentFTP library? Any suggestions?

Martin Prikryl
  • 188,800
  • 56
  • 490
  • 992
shashank99
  • 21
  • 3

1 Answers1

0

It does not seem to be possible.

FluentFTP let's you only to choose what IP version you want to use by InternetProtocolVersions.

Martin Prikryl
  • 188,800
  • 56
  • 490
  • 992