This topic has not yet been rated - Rate this topic

EndOfStreamException Constructor (String, Exception)

May 02, 2013

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.

Namespace:  System.IO
Assembly:  mscorlib (in mscorlib.dll)
'Declaration
Public Sub New ( _
	message As String, _
	innerException As Exception _
)

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.
innerException
Type: System.Exception
The exception that is the cause of the current exception. If the innerException parameter is not Nothing, the current exception is raised in a catch block that handles the inner exception.

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 Nothing 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.

Windows Phone OS

Supported in: 8.0, 7.1, 7.0

Windows Phone

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.