这是我正在使用的一段代码:
public void Start() {
Dns.BeginGetHostEntry("www.google.com", new AsyncCallback(Stop), "Lookin up Google");
}
public void Stop(IAsyncResult ar) {
IPHostEntry ie = Dns.EndGetHostEntry(ar);
Console.WriteLine(ie.HostName);
foreach(string adres in ie.Aliases) {
Console.WriteLine(adres);
}
}
它什么也没有回报。它似乎不起作用,我没有错误。
如果我使用非异步方法:Dns.GetHostEntry("www.google.com");
, 工作。
我不知道这里有什么问题。
答案 0 :(得分:1)
我刚刚运行它并且工作正常
namespace test
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
Start();
}
public void Start()
{
Dns.BeginGetHostEntry("www.google.com", new AsyncCallback(Stop), "Lookin up Google");
}
public void Stop(IAsyncResult ar)
{
IPHostEntry ie = Dns.EndGetHostEntry(ar);
Console.WriteLine(ie.HostName);
foreach (string adres in ie.Aliases)
{
Console.WriteLine(adres);
}
}
}
}