mscorlib(4.0.0.0) API with additions
InsufficientExecutionStackException.cs
1
using
System
.
Runtime
.
Serialization
;
2
3
namespace
System
4
{
6
[
Serializable
]
7
[__DynamicallyInvokable]
8
public
sealed
class
InsufficientExecutionStackException
:
SystemException
9
{
11
[__DynamicallyInvokable]
12
public
InsufficientExecutionStackException
()
13
: base(
Environment
.GetResourceString(
"Arg_InsufficientExecutionStackException"
))
14
{
15
SetErrorCode(-2146232968);
16
}
17
20
[__DynamicallyInvokable]
21
public
InsufficientExecutionStackException
(
string
message)
22
: base(message)
23
{
24
SetErrorCode(-2146232968);
25
}
26
30
[__DynamicallyInvokable]
31
public
InsufficientExecutionStackException
(
string
message,
Exception
innerException)
32
: base(message, innerException)
33
{
34
SetErrorCode(-2146232968);
35
}
36
37
private
InsufficientExecutionStackException
(
SerializationInfo
info,
StreamingContext
context)
38
: base(info, context)
39
{
40
}
41
}
42
}
System.SystemException
Serves as the base class for system exceptions namespace.
Definition:
SystemException.cs:9
System.Runtime
Definition:
AssemblyTargetedPatchBandAttribute.cs:1
System
Definition:
__Canon.cs:3
System.InsufficientExecutionStackException.InsufficientExecutionStackException
InsufficientExecutionStackException()
Initializes a new instance of the T:System.InsufficientExecutionStackException class.
Definition:
InsufficientExecutionStackException.cs:12
System.Runtime.Serialization.StreamingContext
Describes the source and destination of a given serialized stream, and provides an additional caller-...
Definition:
StreamingContext.cs:9
System.Environment
Provides information about, and means to manipulate, the current environment and platform....
Definition:
Environment.cs:21
System.Runtime.Serialization
Definition:
DeserializationEventHandler.cs:1
System.InsufficientExecutionStackException
The exception that is thrown when there is insufficient execution stack available to allow most metho...
Definition:
InsufficientExecutionStackException.cs:8
System.InsufficientExecutionStackException.InsufficientExecutionStackException
InsufficientExecutionStackException(string message)
Initializes a new instance of the T:System.InsufficientExecutionStackException class with a specified...
Definition:
InsufficientExecutionStackException.cs:21
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.
System.InsufficientExecutionStackException.InsufficientExecutionStackException
InsufficientExecutionStackException(string message, Exception innerException)
Initializes a new instance of the T:System.InsufficientExecutionStackException class with a specified...
Definition:
InsufficientExecutionStackException.cs:31
All cs
System
InsufficientExecutionStackException.cs
Generated by
1.8.15