System.IO.IOException.IOException C# (CSharp) Méthode

IOException() public méthode

public IOException ( string message, int hresult ) : System
message string
hresult int
Résultat 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