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

ExtendedSocketException() public method

public ExtendedSocketException ( SocketError socketError, int platformError ) : System.Net.Sockets
socketError SocketError
platformError int
return System.Net.Sockets
            public ExtendedSocketException(SocketError socketError, int platformError)
                : base((int)socketError)
            {
                HResult = platformError;
            }

Same methods

SocketExceptionFactory.ExtendedSocketException::ExtendedSocketException ( int errorCode, EndPoint? endPoint ) : System.Net.Sockets
SocketExceptionFactory.ExtendedSocketException