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

IOException() public method

public IOException ( string message, Exception innerException ) : System
message string
innerException Exception
return System
        public IOException(string message, Exception innerException)
            : base(message, innerException)
        {
            HResult = HResults.COR_E_IO;
        }
    }

Same methods

IOException::IOException ( ) : System
IOException::IOException ( string message ) : System
IOException::IOException ( string message, int hresult ) : System
IOException