mscorlib(4.0.0.0) API with additions
ExecutionEngineException.cs
1
using
System
.
Runtime
.
InteropServices
;
2
using
System
.
Runtime
.
Serialization
;
3
4
namespace
System
5
{
7
[
Serializable
]
8
[Obsolete(
"This type previously indicated an unspecified fatal error in the runtime. The runtime no longer raises this exception so this type is obsolete."
)]
9
[ComVisible(
true
)]
10
public
sealed
class
ExecutionEngineException
:
SystemException
11
{
13
public
ExecutionEngineException
()
14
: base(
Environment
.GetResourceString(
"Arg_ExecutionEngineException"
))
15
{
16
SetErrorCode(-2146233082);
17
}
18
21
public
ExecutionEngineException
(
string
message)
22
: base(message)
23
{
24
SetErrorCode(-2146233082);
25
}
26
30
public
ExecutionEngineException
(
string
message,
Exception
innerException)
31
: base(message, innerException)
32
{
33
SetErrorCode(-2146233082);
34
}
35
36
internal
ExecutionEngineException
(
SerializationInfo
info,
StreamingContext
context)
37
: base(info, context)
38
{
39
}
40
}
41
}
System.ExecutionEngineException.ExecutionEngineException
ExecutionEngineException()
Initializes a new instance of the T:System.ExecutionEngineException class.
Definition:
ExecutionEngineException.cs:13
System.SystemException
Serves as the base class for system exceptions namespace.
Definition:
SystemException.cs:9
System.Runtime.InteropServices
Definition:
_Activator.cs:1
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.ExecutionEngineException.ExecutionEngineException
ExecutionEngineException(string message, Exception innerException)
Initializes a new instance of the T:System.ExecutionEngineException class with a specified error mess...
Definition:
ExecutionEngineException.cs:30
System.Environment
Provides information about, and means to manipulate, the current environment and platform....
Definition:
Environment.cs:21
System.ExecutionEngineException.ExecutionEngineException
ExecutionEngineException(string message)
Initializes a new instance of the T:System.ExecutionEngineException class with a specified error mess...
Definition:
ExecutionEngineException.cs:21
System.Runtime.Serialization
Definition:
DeserializationEventHandler.cs:1
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.ExecutionEngineException
The exception that is thrown when there is an internal error in the execution engine of the common la...
Definition:
ExecutionEngineException.cs:10
All cs
System
ExecutionEngineException.cs
Generated by
1.8.15