Creates a new instance of the EndOfStreamException class.
Creates a new instance of the EndOfStreamException class with its message string set to the empty string ("") and its HRESULT set to COR_E_ENDOFSTREAM.
[Visual Basic] Overloads Public Sub New()
[C#] public EndOfStreamException();
[C++] public: EndOfStreamException();
[JScript] public function EndOfStreamException();
Creates a new instance of the EndOfStreamException class with its message string set to message and its HRESULT set to COR_E_ENDOFSTREAM.
[Visual Basic] Overloads Public Sub New(String)
[C#] public EndOfStreamException(String);
[C++] public: EndOfStreamException(String*);
[JScript] public function EndOfStreamException(String);
Creates a new instance of the EndOfStreamException class with its message string set to message and inner
and its HRESULT set to COR_E_ENDOFSTREAM.
[Visual Basic] Overloads Public Sub New(String, Exception)
[C#] public EndOfStreamException(String, Exception);
[C++] public: EndOfStreamException(String*, Exception);
[JScript] public function EndOfStreamException(String, Exception);
EndOfStreamException Class | EndOfStreamException Members | System.IO Namespace