Files
PVabel2026/PVHelpers/NetEndPointFromIP.cs

19 lines
469 B
C#
Raw Permalink Normal View History

2026-02-05 15:34:59 +01:00
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)) { }
}
}