■ Ping 클래스를 사용해 네트워크 연결 여부를 구하는 방법을 보여준다.
▶ 예제 코드 (C#)
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 42 |
using System.Net.NetworkInformation; #region 네트워크 연결 여부 구하기 - IsNetworkConnected() /// <summary> /// 네트워크 연결 여부 구하기 /// </summary> /// <returns>네트워크 연결 여부</returns> public bool IsNetworkConnected() { try { Ping ping = new Ping(); string host = "8.8.8.8"; byte[] bufferArray = new byte[32]; int timeout = 1000; PingOptions pingOptions = new PingOptions(); PingReply pingReply = ping.Send(host, timeout, bufferArray, pingOptions); if(pingReply.Status == IPStatus.Success) { return true; } else if(pingReply.Status == IPStatus.TimedOut) { return false; } else { return false; } } catch { return false; } } #endregion |