Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using webClient.DownloadFile() to download a file can I set a timeout for this so that it won't take so long if it can't access the file?

share|improve this question

3 Answers

up vote 26 down vote accepted

Try WebClient.DownloadFileAsync(). You can call CancelAsync() by timer with your own timeout.

share|improve this answer

My answer comes from here

You can make a derived class, which will set the timeout property of the base WebClient class:

public class WebDownload : WebClient
{
    /// <summary>
    /// Time in milliseconds
    /// </summary>
    public int Timeout { get; set; }

    public WebDownload() : this(60000) { }

    public WebDownload(int timeout)
    {
        this.Timeout = timeout;
    }

    protected override WebRequest GetWebRequest(Uri address)
    {
        var request = base.GetWebRequest(address);
        if (request != null)
        {
            request.Timeout = this.Timeout;
        }
        return request;
    }
}

and you can use it just like the base WebClient class.

share|improve this answer
17  
love when people reply with code... – kape123 Jul 8 '11 at 16:29
1  
Just incase someone else comes across this helpful code I had to set the timeout before calling base.GetWebRequest(address) – Darthtong Apr 16 '12 at 16:42
Resharper complains about a possible null value for "result" and suggests a null check before setting the Timeout value to the WebRequest. Looking at the decompiled code, it seems impossible unless you provide a custom WebRequestModules in your web.config, but for such an upvoted answer, I would add it just in case. – Kevin Coulombe May 10 at 20:56

As far as I know, you can't set timeout on webClient. I'd rather use HttpWebrequest instead.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.