mscorlib(4.0.0.0) API with additions
ContextMarshalException.cs
3 
4 namespace System
5 {
8  [ComVisible(true)]
10  {
13  : base(Environment.GetResourceString("Arg_ContextMarshalException"))
14  {
15  SetErrorCode(-2146233084);
16  }
17 
20  public ContextMarshalException(string message)
21  : base(message)
22  {
23  SetErrorCode(-2146233084);
24  }
25 
29  public ContextMarshalException(string message, Exception inner)
30  : base(message, inner)
31  {
32  SetErrorCode(-2146233084);
33  }
34 
39  : base(info, context)
40  {
41  }
42  }
43 }
ContextMarshalException()
Initializes a new instance of the T:System.ContextMarshalException class with default properties.
Serves as the base class for system exceptions namespace.
The exception that is thrown when an attempt to marshal an object across a context boundary fails.
Definition: __Canon.cs:3
ContextMarshalException(SerializationInfo info, StreamingContext context)
Initializes a new instance of the T:System.ContextMarshalException class with serialized data.
Describes the source and destination of a given serialized stream, and provides an additional caller-...
Provides information about, and means to manipulate, the current environment and platform....
Definition: Environment.cs:21
ContextMarshalException(string message, Exception inner)
Initializes a new instance of the T:System.ContextMarshalException class with a specified error messa...
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
Specifies that the class can be serialized.
ContextMarshalException(string message)
Initializes a new instance of the T:System.ContextMarshalException class with a specified error messa...