/// <summary>
 /// Default constructor
 /// </summary>
 /// <param name="ipAddress">IP Address string</param>
 /// <param name="ipEndPoint">IP End-Point</param>
 /// <param name="ipEndPointType">IP End-Point type</param>
 public IPInfo(String ipAddress, IPEndPoint ipEndPoint, IPEndPointType ipEndPointType)
 {
     m_ipAddress = ipAddress;
     m_ipEndPoint = ipEndPoint;
     m_ipEndPointType = ipEndPointType;
 }
 /// <summary>
 /// Default constructor
 /// </summary>
 /// <param name="ipAddress">IP Address string</param>
 /// <param name="ipEndPoint">IP End-Point</param>
 /// <param name="ipEndPointType">IP End-Point type</param>
 public IPInfo(String ipAddress, IPEndPoint ipEndPoint, IPEndPointType ipEndPointType)
 {
     m_ipAddress      = ipAddress;
     m_ipEndPoint     = ipEndPoint;
     m_ipEndPointType = ipEndPointType;
 }