Here is my code:
FtpWebRequest reqFTP;
reqFTP = (FtpWebRequest)FtpWebRequest.Create(Constant.IP);
reqFTP.Credentials = new NetworkCredential(UserName, Password);
reqFTP.Method = WebRequestMethods.Ftp.ListDirectory;
response = (FtpWebResponse)reqFTP.GetResponse();
Stream responseStream = response.GetResponseStream();
reader = new StreamReader(responseStream);
I would like to try to connect to the web service if my code fails to connect. Only after 3 times, I would like to give up.
How should I try?
I am thinking about try catch
and count the failure time but I think there will be better solutions.
Encapsulate your code in loop, and return or break if there is no exception.