IOException 构造函数

定义

使用 IOException 类的消息字符串初始化 IOException 类的新实例。

重载

IOException()

初始化 IOException 类的新实例,其消息字符串设置为空字符串(“”),其 HRESULT 设置为 COR_E_IO,其内部异常设置为 null 引用。

IOException(String)

初始化 IOException 类的新实例,其消息字符串设置为 message,其 HRESULT 设置为 COR_E_IO,其内部异常设置为 null

IOException(SerializationInfo, StreamingContext)
已过时.

使用指定的序列化和上下文信息初始化 IOException 类的新实例。

IOException(String, Exception)

使用指定的错误消息和对作为此异常原因的内部异常的引用初始化 IOException 类的新实例。

IOException(String, Int32)

初始化 IOException 类的新实例,其消息字符串设置为 message 及其 HRESULT 用户定义。

IOException()

Source:
IOException.cs
Source:
IOException.cs
Source:
IOException.cs

初始化 IOException 类的新实例,其消息字符串设置为空字符串(“”),其 HRESULT 设置为 COR_E_IO,其内部异常设置为 null 引用。

public:
 IOException();
public IOException ();
Public Sub New ()

注解

构造函数将新实例的 Message 属性初始化为系统提供的消息,该消息描述错误,例如“执行请求的操作时发生 I/O 错误”。此消息将考虑当前系统区域性。

另请参阅

适用于

IOException(String)

Source:
IOException.cs
Source:
IOException.cs
Source:
IOException.cs

初始化 IOException 类的新实例,其消息字符串设置为 message,其 HRESULT 设置为 COR_E_IO,其内部异常设置为 null

public:
 IOException(System::String ^ message);
public IOException (string message);
public IOException (string? message);
new System.IO.IOException : string -> System.IO.IOException
Public Sub New (message As String)

参数

message
String

描述错误的 Stringmessage 的内容旨在由人类理解。 此构造函数的调用方必须确保此字符串已本地化为当前系统区域性。

注解

构造函数使用 message初始化新实例的 Message 属性。

另请参阅

适用于

IOException(SerializationInfo, StreamingContext)

Source:
IOException.cs
Source:
IOException.cs
Source:
IOException.cs

注意

This API supports obsolete formatter-based serialization. It should not be called or extended by application code.

使用指定的序列化和上下文信息初始化 IOException 类的新实例。

protected:
 IOException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected IOException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
[System.Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId="SYSLIB0051", UrlFormat="https://aka.ms/dotnet-warnings/{0}")]
protected IOException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.IO.IOException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.IO.IOException
[<System.Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId="SYSLIB0051", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>]
new System.IO.IOException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.IO.IOException
Protected Sub New (info As SerializationInfo, context As StreamingContext)

参数

info
SerializationInfo

用于序列化或反序列化对象的数据。

context
StreamingContext

对象的源和目标。

属性

另请参阅

适用于

IOException(String, Exception)

Source:
IOException.cs
Source:
IOException.cs
Source:
IOException.cs

使用指定的错误消息和对作为此异常原因的内部异常的引用初始化 IOException 类的新实例。

public:
 IOException(System::String ^ message, Exception ^ innerException);
public IOException (string message, Exception innerException);
public IOException (string? message, Exception? innerException);
new System.IO.IOException : string * Exception -> System.IO.IOException
Public Sub New (message As String, innerException As Exception)

参数

message
String

说明异常原因的错误消息。

innerException
Exception

是当前异常原因的异常。 如果未 nullinnerException 参数,则会在处理内部异常的 catch 块中引发当前异常。

注解

作为上一个异常的直接结果引发的异常应包括对 InnerException 属性中上一个异常的引用。 InnerException 属性返回传入构造函数的相同值,或者如果 InnerException 属性未向构造函数提供内部异常值,则返回 null

下表显示了 IOException实例的初始属性值。

财产 价值
InnerException 内部异常引用。
Message 错误消息字符串。

有关内部异常的详细信息,请参阅 InnerException

另请参阅

适用于

IOException(String, Int32)

Source:
IOException.cs
Source:
IOException.cs
Source:
IOException.cs

初始化 IOException 类的新实例,其消息字符串设置为 message 及其 HRESULT 用户定义。

public:
 IOException(System::String ^ message, int hresult);
public IOException (string message, int hresult);
public IOException (string? message, int hresult);
new System.IO.IOException : string * int -> System.IO.IOException
Public Sub New (message As String, hresult As Integer)

参数

message
String

描述错误的 Stringmessage 的内容旨在由人类理解。 此构造函数的调用方必须确保此字符串已本地化为当前系统区域性。

hresult
Int32

标识已发生的错误的整数。

另请参阅

适用于