.NET Socket.Connect 将主机名解析为 IP 地址
我正在查看一些代码中的 .NET 套接字连接函数。 http://msdn.microsoft.com/en-us/library/d7ew360f.aspx 该函数接受一个字符串作为参数,表示远程主机的名称。
我的问题是,套接字如何获取该远程主机的 IP 地址?它是否执行 DNS 查找或者是否可以转到 Windows 主机文件? (Windows XP)
I'm looking at the .NET socket connect function in some code. http://msdn.microsoft.com/en-us/library/d7ew360f.aspx This function takes in a string as an argument that represents the name of the remote host.
My question is, how does the socket then go about getting the IP address of this remote host? Does it perform a DNS lookup or can it go to the Windows hosts file? (Windows XP)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
Dns.GetHostAddresses(host);
。实际代码片段如下:
因此,具有主机名的构造函数只需调用具有 IP 地址的构造函数。
请参阅 http://msdn.microsoft.com/en- us/library/system.net.dns.gethostaddresses.aspx 有关
Dns.GetHostAddresses()
的文档。Using
Dns.GetHostAddresses(host);
.A fragment of the actual code is as follows:
So, the constructor with the hostname simply calls the constructor with the IP addresses.
See http://msdn.microsoft.com/en-us/library/system.net.dns.gethostaddresses.aspx for documentation about
Dns.GetHostAddresses()
.