NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

EndOfStreamException Constructor

Creates a new instance of the EndOfStreamException class.

Overload List

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);

See Also

EndOfStreamException Class | EndOfStreamException Members | System.IO Namespace