C#域名解析简单实现方法
程序员文章站
2023-12-05 22:31:28
本文实例讲述了c#域名解析简单实现方法。分享给大家供大家参考。具体实现方法如下:
using system;
using system.collections....
本文实例讲述了c#域名解析简单实现方法。分享给大家供大家参考。具体实现方法如下:
using system; using system.collections.generic; using system.componentmodel; using system.data; using system.drawing; using system.linq; using system.text; using system.windows.forms; using system.net; namespace test1 { public partial class form1 : form { public form1() { initializecomponent(); } private void buttondns_click(object sender, eventargs e) { try { this.cursor = cursors.waitcursor; //解析主机名 iphostentry ipinfo = dns.gethostentry(textbox1.text); //清空列表框 listbox1.items.clear(); listbox2.items.clear(); //显示ip地址 foreach (ipaddress ip in ipinfo.addresslist) { listbox1.items.add(ip.tostring()); } //显示别名 foreach (string alias in ipinfo.aliases) { listbox2.items.add(alias); } //显示主机名 textbox2.text = ipinfo.hostname; } catch (exception ex) { messagebox.show(ex.message); } finally { this.cursor = cursors.default; } } private void form1_load(object sender, eventargs e) { } } }
希望本文所述对大家的c#程序设计有所帮助。
上一篇: C#命令模式用法实例