欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

C# ping网络IP 实现网络状态检测的方法

程序员文章站 2023-08-29 21:23:30
c# ping网络ip 实现网络状态检测的方法 public string gethostnamebyip(string ip)&n...

c# ping网络ip 实现网络状态检测的方法

public string gethostnamebyip(string ip) 

{ 

ip = ip.trim(); 

if (ip == string.empty) 

return string.empty; 

try 

{ 

// 是否 ping 的通 

if (this.ping(ip)) 

{ 

system.net.iphostentry host = system.net.dns.gethostentry(ip); 

return host.hostname; 

} 

else 

return string.empty; 

} 

catch (exception) 

{ 

return string.empty; 

} 

} 

以上这篇c# ping网络ip 实现网络状态检测的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。