<PackageReference Include="NETStandard.Library" Version="2.0.0-preview2-25401-01" />
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);
}
}