C# ping网络IP 实现网络状态检测的方法
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
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 实现网络状态检测的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。