■ 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 |
using System.Net.NetworkInformation; #region 인터넷 연결 여부 구하기 - IsInternetConnected() /// <summary> /// 인터넷 연결 여부 구하기 /// </summary> /// <returns>인터넷 연결 여부</returns> public static bool IsInternetConnected() { try { Ping pint = new Ping(); string hostNameOrAddress = "google.com"; byte[] bufferArray = new byte[32]; int timeout = 1000; PingOptions pingOptions = new PingOptions(); PingReply pingRelay = pint.Send(hostNameOrAddress, timeout, bufferArray, pingOptions); return (pingRelay.Status == IPStatus.Success); } catch { return false; } } #endregion |