Share via


IOException Constructor (String)

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Initializes a new instance of the IOException class with its message string set to message, its HRESULT set to COR_E_IO, and its inner exception set to nullNothingnullptrunita null reference (Nothing in Visual Basic).

Namespace:  System.IO
Assembly:  mscorlib (in mscorlib.dll)

Syntax

'Declaration
Public Sub New ( _
    message As String _
)
public IOException(
    string message
)
public:
IOException(
    String^ message
)
new : 
        message:string -> IOException
public function IOException(
    message : String
)

Parameters

  • message
    Type: System. . :: . .String
    A String that describes the error. The content of message is intended to be understood by humans. The caller of this constructor is required to ensure that this string has been localized for the current system culture.

Remarks

The constructor initializes the Message property of the new instance using message.

.NET Framework Security

See Also

Reference

IOException Class

IOException Overload

System.IO Namespace