System.Net.DnsEndPoint
namespace System.Net
{
public class DnsEndPoint : EndPoint
{
public string Host { get; }
public int Port { get; }
public DnsEndPoint(string host, int port);
public DnsEndPoint(string host, int port, AddressFamily addressFamily);
}
}