我对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语句运行它时,下载行会超时并出现超时错误。
我可以添加一些东西来延长下载时间吗?