How to improve the Performance of FtpWebRequest?
I have done some experimentation (uploading about 20 files on various sizes) on FtpWebRequest with the following factors KeepAlive = true/false ftpRequest.KeepAlive = isKeepAlive; Connnection Group Name = UserDefined or null ftpRequest.ConnectionGroupName = “MyGroupName”; Connection Limit = 2 (default) or 4 or 8 ftpRequest.ServicePoint.ConnectionLimit = ConnectionLimit; Mode = Synchronous or Async see this example My … Read more