C#下载字符串超时问题

时间:2018-08-14 13:06:53

标签: c#

我对C#完全陌生,所以我真的不确定自己在做什么(我的背景是VBA)。不管我的任务是解决字符串下载超时问题。代码很简单。

static void Main(string[] args)
    {
        using (WebClient webClient = new System.Net.WebClient())
        {
            WebClient n = new WebClient();
            n.Credentials = CredentialCache.DefaultCredentials;
            var json = n.DownloadString("https://theURL");
        }
    }

当我们通过IE访问URL时,文件将在大约三分钟内下载而不会出现问题。但是,当我们通过download语句运行它时,下载行会超时并出现超时错误。

我可以添加一些东西来延长下载时间吗?

0 个答案:

没有答案