System.Net.Internals.SocketExceptionFactory.ExtendedSocketException.ExtendedSocketException C# (CSharp) Method

ExtendedSocketException() public method

public ExtendedSocketException ( int errorCode, EndPoint? endPoint ) : System.Net.Sockets
errorCode int
endPoint EndPoint?
return System.Net.Sockets
            public ExtendedSocketException(int errorCode, EndPoint? endPoint)
                : base(errorCode)
            {
                _endPoint = endPoint;
            }

Same methods

SocketExceptionFactory.ExtendedSocketException::ExtendedSocketException ( SocketError socketError, int platformError ) : System.Net.Sockets
SocketExceptionFactory.ExtendedSocketException