我试图通过代理使用webclient。我做了以下两次尝试:
Dim wc As WebClient = New WebClient()
wc.Proxy = New System.Net.WebProxy(proxyadd(currentprox), True)
Dim html As String
html = wc.DownloadString(URL)
和...
Dim wc As WebClient = New WebClient()
Dim prox As New WebProxy(proxyadd(currentprox))
prox.Address = New Uri(proxyadd(currentprox))
wc.Proxy = prox
Dim html As String
html = wc.DownloadString(URL)
其中proxyadd(currentprox)是表格中的地址:" 157.122.114.153:9000" (变量类型是字符串)。
尝试使用任何代理时出现的错误是:
基础连接已关闭:发生意外错误 收到。
任何建议/帮助都会很棒。我找到了我计划使用的this代理列表。