EndOfStreamException Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the EndOfStreamException class.
Overloads
EndOfStreamException() |
Initializes a new instance of the EndOfStreamException class with its message string set to a system-supplied message and its HRESULT set to COR_E_ENDOFSTREAM. |
EndOfStreamException(String) |
Initializes a new instance of the EndOfStreamException class with its message string set to |
EndOfStreamException(SerializationInfo, StreamingContext) |
Obsolete.
Initializes a new instance of the EndOfStreamException class with the specified serialization and context information. |
EndOfStreamException(String, Exception) |
Initializes a new instance of the EndOfStreamException class with a specified error message and a reference to the inner exception that is the cause of this exception. |
EndOfStreamException()
- Source:
- EndOfStreamException.cs
- Source:
- EndOfStreamException.cs
- Source:
- EndOfStreamException.cs
Initializes a new instance of the EndOfStreamException class with its message string set to a system-supplied message and its HRESULT set to COR_E_ENDOFSTREAM.
public:
EndOfStreamException();
public EndOfStreamException ();
Public Sub New ()
See also
Applies to
EndOfStreamException(String)
- Source:
- EndOfStreamException.cs
- Source:
- EndOfStreamException.cs
- Source:
- EndOfStreamException.cs
Initializes a new instance of the EndOfStreamException class with its message string set to message
and its HRESULT set to 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)
Parameters
- message
- 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.
See also
Applies to
EndOfStreamException(SerializationInfo, StreamingContext)
- Source:
- EndOfStreamException.cs
- Source:
- EndOfStreamException.cs
- Source:
- EndOfStreamException.cs
Caution
This API supports obsolete formatter-based serialization. It should not be called or extended by application code.
Initializes a new instance of the EndOfStreamException class with the specified serialization and context information.
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)
Parameters
- info
- SerializationInfo
The SerializationInfo that holds the serialized object data about the exception being thrown.
- context
- StreamingContext
The StreamingContext that contains contextual information about the source or destination.
- Attributes
See also
Applies to
EndOfStreamException(String, Exception)
- Source:
- EndOfStreamException.cs
- Source:
- EndOfStreamException.cs
- Source:
- EndOfStreamException.cs
Initializes a new instance of the EndOfStreamException class with a specified error message and a reference to the inner exception that is the cause of this exception.
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)
Parameters
- message
- 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.
- innerException
- Exception
The exception that is the cause of the current exception. If the innerException
parameter is not null
, the current exception is raised in a catch
block that handles the inner exception.
Remarks
An exception that is thrown as a direct result of a previous exception should include a reference to the previous exception in the InnerException property. The InnerException property returns the same value that is passed into the constructor, or null
if the InnerException property does not supply the inner exception value to the constructor.
The following table shows the initial property values for an instance of EndOfStreamException.
Property | Value |
---|---|
InnerException | The inner exception reference. |
Message | The error message string. |
See also
- Exception
- Handling and throwing exceptions in .NET
- File and Stream I/O
- How to: Read Text from a File
- How to: Write Text to a File