System.Net.WebException.WebException C# (CSharp) Method

WebException() public method

public WebException ( string message, Exception innerException, WebExceptionStatus status, WebResponse response ) : System.Diagnostics
message string
innerException Exception
status WebExceptionStatus
response WebResponse
return System.Diagnostics
        public WebException(string message,
                            Exception innerException,
                            WebExceptionStatus status,
                            WebResponse response) :
            base(message, innerException)
        {
            _status = status;
            _response = response;

            if (innerException != null)
            {
                HResult = innerException.HResult;
            }
        }

Same methods

WebException::WebException ( )
WebException::WebException ( System serializationInfo, System streamingContext )
WebException::WebException ( string message )
WebException::WebException ( string message, System innerException )
WebException::WebException ( string message, System innerException, System status, System response )
WebException::WebException ( ) : System.Diagnostics
WebException::WebException ( SerializationInfo serializationInfo, StreamingContext streamingContext ) : System.Diagnostics
WebException::WebException ( string message ) : System.Diagnostics
WebException::WebException ( string message, Exception innerException ) : System.Diagnostics
WebException::WebException ( string message, WebExceptionStatus status ) : System.Diagnostics