i use this solution How can we show progress bar for upload with FtpWebRequest and work well whit progressbar.
but when at request.GetRequestStream(), i take like 1 or 2 seconds of delay, and seems program is bugged at eyes of client.
Thanks in advance,
Greetings,
EDIT:
i add the followin lines to make GetRequestStream faster.
request.Proxy = null;
request.ServicePoint.UseNagleAlgorithm = false;
request.ServicePoint.Expect100Continue = false;
request.ServicePoint.ConnectionLimit= 20;
ServicePointManager.CheckCertificateRevocationList = false;