19 lines
469 B
C#
19 lines
469 B
C#
|
|
using System.Net;
|
|||
|
|
|
|||
|
|
namespace PVHelpers
|
|||
|
|
{
|
|||
|
|
public class NetEndPointFromIP : INetEndPoint
|
|||
|
|
{
|
|||
|
|
public IPEndPoint EndPoint { get; }
|
|||
|
|
public IPAddress Address => this.EndPoint.Address;
|
|||
|
|
public Int32 Port => this.EndPoint.Port;
|
|||
|
|
|
|||
|
|
public NetEndPointFromIP(IPEndPoint endpoint)
|
|||
|
|
{
|
|||
|
|
this.EndPoint = endpoint;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public NetEndPointFromIP(IPAddress address, Int32 port) : this(new(address, port)) { }
|
|||
|
|
}
|
|||
|
|
}
|