mscorlib(4.0.0.0) API with additions
InsufficientMemoryException.cs
1
using
System
.
Runtime
.
Serialization
;
2
3
namespace
System
4
{
6
[
Serializable
]
7
public
sealed
class
InsufficientMemoryException
:
OutOfMemoryException
8
{
10
public
InsufficientMemoryException
()
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
33
private
InsufficientMemoryException
(
SerializationInfo
info,
StreamingContext
context)
34
: base(info, context)
35
{
36
}
37
}
38
}
System.InsufficientMemoryException
The exception that is thrown when a check for sufficient available memory fails. This class cannot be...
Definition:
InsufficientMemoryException.cs:7
System.InsufficientMemoryException.InsufficientMemoryException
InsufficientMemoryException(string message)
Initializes a new instance of the T:System.InsufficientMemoryException class with a specified message...
Definition:
InsufficientMemoryException.cs:18
System.Runtime
Definition:
AssemblyTargetedPatchBandAttribute.cs:1
System
Definition:
__Canon.cs:3
System.Runtime.Serialization.StreamingContext
Describes the source and destination of a given serialized stream, and provides an additional caller-...
Definition:
StreamingContext.cs:9
System.InsufficientMemoryException.InsufficientMemoryException
InsufficientMemoryException(string message, Exception innerException)
Initializes a new instance of the T:System.InsufficientMemoryException class with a specified error m...
Definition:
InsufficientMemoryException.cs:27
System.InsufficientMemoryException.InsufficientMemoryException
InsufficientMemoryException()
Initializes a new instance of the T:System.InsufficientMemoryException class with a system-supplied m...
Definition:
InsufficientMemoryException.cs:10
System.Runtime.Serialization
Definition:
DeserializationEventHandler.cs:1
System.OutOfMemoryException
The exception that is thrown when there is not enough memory to continue the execution of a program.
Definition:
OutOfMemoryException.cs:10
System.Runtime.Serialization.SerializationInfo
Stores all the data needed to serialize or deserialize an object. This class cannot be inherited.
Definition:
SerializationInfo.cs:12
System.Exception
Represents errors that occur during application execution.To browse the .NET Framework source code fo...
Definition:
Exception.cs:22
System.Reflection.TypeAttributes.Serializable
Specifies that the class can be serialized.
All cs
System
InsufficientMemoryException.cs
Generated by
1.8.15