EndOfStreamException 构造函数

定义

初始化 EndOfStreamException 类的新实例。

重载

EndOfStreamException()

初始化 EndOfStreamException 类的新实例,将其消息字符串设置为系统提供的消息,将其 HRESULT 设置为 COR_E_ENDOFSTREAM。

EndOfStreamException(String)

初始化 EndOfStreamException 类的新实例,将其消息字符串设置为 message,将其 HRESULT 设置为 COR_E_ENDOFSTREAM。

EndOfStreamException(SerializationInfo, StreamingContext)
已过时.

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

EndOfStreamException(String, Exception)

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

EndOfStreamException()

Source:
EndOfStreamException.cs
Source:
EndOfStreamException.cs
Source:
EndOfStreamException.cs

初始化 EndOfStreamException 类的新实例,将其消息字符串设置为系统提供的消息,将其 HRESULT 设置为 COR_E_ENDOFSTREAM。

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

另请参阅

适用于

EndOfStreamException(String)

Source:
EndOfStreamException.cs
Source:
EndOfStreamException.cs
Source:
EndOfStreamException.cs

初始化 EndOfStreamException 类的新实例,将其消息字符串设置为 message,将其 HRESULT 设置为 COR_E_ENDOFSTREAM。

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

参数

message
String

描述错误的字符串。 message 的内容设计为易于理解。 此构造函数的调用方需要确保此字符串已针对当前系统区域性进行了本地化。

另请参阅

适用于

EndOfStreamException(SerializationInfo, StreamingContext)

Source:
EndOfStreamException.cs
Source:
EndOfStreamException.cs
Source:
EndOfStreamException.cs

注意

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

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

protected:
 EndOfStreamException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected EndOfStreamException (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 EndOfStreamException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.IO.EndOfStreamException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.IO.EndOfStreamException
[<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.EndOfStreamException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.IO.EndOfStreamException
Protected Sub New (info As SerializationInfo, context As StreamingContext)

参数

info
SerializationInfo

包含有关所引发异常的序列化对象数据的 SerializationInfo

context
StreamingContext

StreamingContext,它包含关于源或目标的上下文信息。

属性

另请参阅

适用于

EndOfStreamException(String, Exception)

Source:
EndOfStreamException.cs
Source:
EndOfStreamException.cs
Source:
EndOfStreamException.cs

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

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

参数

message
String

描述错误的字符串。 message 的内容设计为易于理解。 此构造函数的调用方需要确保此字符串已针对当前系统区域性进行了本地化。

innerException
Exception

导致当前异常的异常。 如果 innerException 参数不为 null,则当前异常将在处理内部异常的 catch 块中引发。

注解

因前一个异常而直接引发的异常应在 InnerException 属性中包含对前一个异常的引用。 InnerException 属性将返回传递给构造函数的同一值;如果 InnerException 属性不向构造函数提供内部异常值,则返回 null

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

properties “值”
InnerException 内部异常引用。
Message 错误消息字符串。

另请参阅

适用于