mscorlib(4.0.0.0) API with additions
SerializationException.cs
2 
4 {
7  [ComVisible(true)]
8  [__DynamicallyInvokable]
10  {
11  private static string _nullMessage = Environment.GetResourceString("Arg_SerializationException");
12 
14  [__DynamicallyInvokable]
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 
45  : base(info, context)
46  {
47  }
48  }
49 }
Serves as the base class for system exceptions namespace.
Definition: __Canon.cs:3
Describes the source and destination of a given serialized stream, and provides an additional caller-...
SerializationException(SerializationInfo info, StreamingContext context)
Initializes a new instance of the T:System.Runtime.Serialization.SerializationException class from se...
Provides information about, and means to manipulate, the current environment and platform....
Definition: Environment.cs:21
SerializationException(string message)
Initializes a new instance of the T:System.Runtime.Serialization.SerializationException class with a ...
The exception thrown when an error occurs during serialization or deserialization.
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
SerializationException()
Initializes a new instance of the T:System.Runtime.Serialization.SerializationException class with de...
Specifies that the class can be serialized.
SerializationException(string message, Exception innerException)
Initializes a new instance of the T:System.Runtime.Serialization.SerializationException class with a ...