EventStore.Transport.Tcp.TcpConnection.TcpConnection C# (CSharp) Method

TcpConnection() private method

private TcpConnection ( IPEndPoint effectiveEndPoint ) : System
effectiveEndPoint System.Net.IPEndPoint
return System
        private TcpConnection(IPEndPoint effectiveEndPoint)
        {
            if (effectiveEndPoint == null)
                throw new ArgumentNullException("effectiveEndPoint");

            EffectiveEndPoint = effectiveEndPoint;
        }