■ IPGlobalProperties 클래스의 GetActiveTcpListeners 메소드를 사용해 포트 사용 여부를 구하는 방법을 보여준다.
▶ 예제 코드 (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 |
using System.Net; using System.Net.NetworkInformation; #region 포트 사용 여부 구하기 - IsPortInUse(port) /// <summary> /// 포트 사용 여부 구하기 /// </summary> /// <param name="port">포트</param> /// <returns>포트 사용 여부</returns> public bool IsPortInUse(int port) { bool inUse = false; IPGlobalProperties ipGlobalProperties = IPGlobalProperties.GetIPGlobalProperties(); IPEndPoint[] ipEndPointArray = ipGlobalProperties.GetActiveTcpListeners(); foreach(IPEndPoint ipEndPoint in ipEndPointArray) { if(ipEndPoint.Port == port) { inUse = true; break; } } return inUse; } #endregion |