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!

OutOfMemoryException Constructor

Initializes an instance of the OutOfMemoryException class.

Overload List

Initializes an instance of the OutOfMemoryException class with default properties.

[Visual Basic] Overloads Public Sub New()
[C#] public OutOfMemoryException();
[C++] public: OutOfMemoryException();
[JScript] public function OutOfMemoryException();

Initializes an instance of OutOfMemoryException with a specified message.

[Visual Basic] Overloads Public Sub New(String)
[C#] public OutOfMemoryException(String);
[C++] public: OutOfMemoryException(String*);
[JScript] public function OutOfMemoryException(String);

Initializes an instance of OutOfMemoryException with a specified message and the exception that is the root cause of this exception.

[Visual Basic] Overloads Public Sub New(String, Exception)
[C#] public OutOfMemoryException(String, Exception);
[C++] public: OutOfMemoryException(String*, Exception);
[JScript] public function OutOfMemoryException(String, Exception);

See Also

OutOfMemoryException Class | OutOfMemoryException Members | System Namespace