System.Net.IPEndPoint
namespace System.
Net
{
public class IPEndPoint :
EndPoint
{
public const int MaxPort =
65535;
public const int MinPort =
0;
public IPAddress Address { get; set; }
public int Port { get; set; }
public IPEndPoint(
long address,
int port);
public IPEndPoint(
IPAddress address,
int port);
}
}