if (response == null)
{
result.StatusCode = new HttpStatusCode();
result.StatusDescription = string.Empty;
result.Header = new WebHeaderCollection();
result.CookieCollection = new CookieCollection();
result.Cookie = string.Empty;
result.Html = string.Empty;
return;
}
无心释途 发表于 2014-9-26 12:51
多线程用代理的情况response为null经常出现,我的程序每次遇到就停在这里了,现在只有在前面加了一段
[mw_ ...