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 (String)

Initializes an instance of OutOfMemoryException with a specified message.

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

Parameters

message
The message that identifies the reason the exception occurred.

Remarks

OutOfMemoryException inherits from the Exception class. This constructor sets the properties of the OutOfMemoryException object as follows:

Property Type Condition
InnerException null
Message The message string.

See Also

OutOfMemoryException Class | OutOfMemoryException Members | System Namespace | OutOfMemoryException Constructor Overload List