在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
尊重作者,请保留 www.it55.com 链接字样。 public string GetIPByDomain(string url) { if (url.Trim() == string.Empty) return ""; try { System.Net.IPHostEntry host = System.Net.Dns.GetHostEntry(url); return host.AddressList.GetValue(0).ToString(); } catch (Exception e) { throw e; } } 调用方法: GetIPByDomain("www.it55.com") |
请发表评论