user270811
user270811

Reputation: 1751

c# ftp client retry delay

i was able to create a basic ftp client that is working, but i want to make it more robust. one of the features i want to add is retry delay (The time between each retry). unfortunately i couldn't find a lot of materials online. can someone help me? thanks.

Upvotes: 1

Views: 558

Answers (1)

gimel
gimel

Reputation: 86492

How about using System.Threading.Thread.Sleep() ?

Thread.Sleep Method

Blocks the current thread for the specified number of milliseconds.

Upvotes: 2

Related Questions