VB.NET使用HTTPWebRequest获取网站IP地址?

时间:2011-10-20 13:47:39

标签: vb.net class httpwebrequest ip httpwebresponse

是否可以在HTTPWebRequest会话中获取您要连接的网站的IP地址?

我希望在许可类中进行身份验证检查,以防止人们查看他们的hosts.etc文件并发送错误回复来破解我的软件。

2 个答案:

答案 0 :(得分:1)

When retrieving URL via HttpWebRequest, can I see the IP address of the destination server?

查看有关此问题的帖子可能会对您有所帮助

干杯

Truez

答案 1 :(得分:0)

上面的帖子是正确的,代码在下面使用:

For Each IP In Dns.GetHostEntry("website.com").AddressList
            If IP.ToString() <> "websiteip" Then
                MessageBox.Show("Not connecting to correct IP address")
                Exit Sub
            End If
        Next