System.IO.IOException.IOException C# (CSharp) Method

IOException() public method

public IOException ( string message, int hresult ) : System
message string
hresult int
return System
        public IOException(string message, int hresult)
            : base(message)
        {
            HResult = hresult;
        }

Same methods

IOException::IOException ( ) : System
IOException::IOException ( string message ) : System
IOException::IOException ( string message, Exception innerException ) : System
IOException