アドレスを IP に解決できません。「そのようなホストが見つかりません」という例外が発生しています。しかし、Web ブラウザから同じサイトにアクセスできます。
IPAddress address = Dns.GetHostAddresses("https:\\google.com")[0];
Web ブラウザがプロキシを使用しているためでしょうか。どうすればまだ接続できますか?Webブラウザのプロキシ設定が社内デフォルトのままで変更できません。
The problem is that you're including https:\\
. I have tested the code, and it works perfectly when you just use www.google.com
as the parameter for Dns.GetHostAddresses()
.
IPAddress[] ips = Dns.GetHostAddresses("www.google.com");
foreach (IPAddress ip in ips)
{
Console.WriteLine(" {0}", ip);
}
テストとして。正常に動作します。