mscorlib(4.0.0.0) API with additions
SerializationException.cs
1
using
System
.
Runtime
.
InteropServices
;
2
3
namespace
System.Runtime.Serialization
4
{
6
[
Serializable
]
7
[ComVisible(
true
)]
8
[__DynamicallyInvokable]
9
public
class
SerializationException
:
SystemException
10
{
11
private
static
string
_nullMessage =
Environment
.GetResourceString(
"Arg_SerializationException"
);
12
14
[__DynamicallyInvokable]
15
public
SerializationException
()
16
: base(_nullMessage)
17
{
18
SetErrorCode(-2146233076);
19
}
20
23
[__DynamicallyInvokable]
24
public
SerializationException
(
string
message)
25
: base(message)
26
{
27
SetErrorCode(-2146233076);
28
}
29
33
[__DynamicallyInvokable]
34
public
SerializationException
(
string
message,
Exception
innerException)
35
: base(message, innerException)
36
{
37
SetErrorCode(-2146233076);
38
}
39
44
protected
SerializationException
(
SerializationInfo
info,
StreamingContext
context)
45
: base(info, context)
46
{
47
}
48
}
49
}
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.Runtime.Serialization.SerializationException.SerializationException
SerializationException(SerializationInfo info, StreamingContext context)
Initializes a new instance of the T:System.Runtime.Serialization.SerializationException class from se...
Definition:
SerializationException.cs:44
System.Environment
Provides information about, and means to manipulate, the current environment and platform....
Definition:
Environment.cs:21
System.Runtime.Serialization.SerializationException.SerializationException
SerializationException(string message)
Initializes a new instance of the T:System.Runtime.Serialization.SerializationException class with a ...
Definition:
SerializationException.cs:24
System.Runtime.Serialization
Definition:
DeserializationEventHandler.cs:1
System.Runtime.Serialization.SerializationException
The exception thrown when an error occurs during serialization or deserialization.
Definition:
SerializationException.cs:9
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.Runtime.Serialization.SerializationException.SerializationException
SerializationException()
Initializes a new instance of the T:System.Runtime.Serialization.SerializationException class with de...
Definition:
SerializationException.cs:15
System.Reflection.TypeAttributes.Serializable
Specifies that the class can be serialized.
System.Runtime.Serialization.SerializationException.SerializationException
SerializationException(string message, Exception innerException)
Initializes a new instance of the T:System.Runtime.Serialization.SerializationException class with a ...
Definition:
SerializationException.cs:34
All cs
System.Runtime.Serialization
SerializationException.cs
Generated by
1.8.15