mscorlib(4.0.0.0) API with additions
InsufficientMemoryException.cs
2 
3 namespace System
4 {
8  {
11  : base(Exception.GetMessageFromNativeResources(ExceptionMessageKind.OutOfMemory))
12  {
13  SetErrorCode(-2146233027);
14  }
15 
18  public InsufficientMemoryException(string message)
19  : base(message)
20  {
21  SetErrorCode(-2146233027);
22  }
23 
27  public InsufficientMemoryException(string message, Exception innerException)
28  : base(message, innerException)
29  {
30  SetErrorCode(-2146233027);
31  }
32 
34  : base(info, context)
35  {
36  }
37  }
38 }
The exception that is thrown when a check for sufficient available memory fails. This class cannot be...
InsufficientMemoryException(string message)
Initializes a new instance of the T:System.InsufficientMemoryException class with a specified message...
Definition: __Canon.cs:3
Describes the source and destination of a given serialized stream, and provides an additional caller-...
InsufficientMemoryException(string message, Exception innerException)
Initializes a new instance of the T:System.InsufficientMemoryException class with a specified error m...
InsufficientMemoryException()
Initializes a new instance of the T:System.InsufficientMemoryException class with a system-supplied m...
The exception that is thrown when there is not enough memory to continue the execution of a program.
Stores all the data needed to serialize or deserialize an object. This class cannot be inherited.
Represents errors that occur during application execution.To browse the .NET Framework source code fo...
Definition: Exception.cs:22
Specifies that the class can be serialized.