2

我正在将 WP7 应用程序移植到 Windows 8 Metro,我遇到的(许多)转换障碍之一是根据主机名或 DNS 名称发现 IP 地址。以下是我之前在 WP7 中使用的示例:

DnsEndPoint dnsEnd = new DnsEndPoint("www.google.com", 80, AddressFamily.InterNetwork);
DeviceNetworkInformation.ResolveHostNameAsync(dnsEnd, IPLookupCallbackMethod, this);

我在网上搜索了解决方案并浏览了 Metro API,但我还没有找到任何东西。有没有其他人在 Metro/WinRT 中遇到过这个问题并找到了解决方案?

4

1 回答 1

7
using Windows.Networking;
using Windows.Networking.Sockets;

HostName serverHost = new HostName("www.google.com");
StreamSocket clientSocket = new Windows.Networking.Sockets.StreamSocket();

// Try to connect to the remote host
await clientSocket.ConnectAsync(serverHost, "http");

// Now try the clientSocket.Information property
// e.g. clientSocket.Information.RemoteAddress
// to get the ip address

一旦 clientSocket 尝试连接,clientSocket.Information 属性将包含大量网络信息,包括远程主机信息,包括 IP 地址。我刚刚输入了这个内联,所以我希望没有错误。希望这可以帮助!也试试这个链接到 msdn

于 2012-06-27T01:26:43.793 回答