Dns.GetHostEntry behind a proxy

2019-07-22 17:22发布

does anyone know how to resolve an external domain name with Dns.GetHostEntry() behind a proxy?

I already tried to indicate the proxy information in my App.config (< defaultProxy >) but it doesn't work.

Thanks.

1条回答
Ridiculous、
2楼-- · 2019-07-22 18:09

Assuming you're talking about an HTTP proxy and the firewall doesn't allow DNS traffic through then it can't be done using the DNS protocol.

One thing you might be able to do is to use an HTTP request against a service like http://network-tools.com and parse the response.

查看更多
登录 后发表回答