mscorlib(4.0.0.0) API with additions
RemotingException.cs
3 
5 {
8  [ComVisible(true)]
10  {
11  private static string _nullMessage = Environment.GetResourceString("Remoting_Default");
12 
15  : base(_nullMessage)
16  {
17  SetErrorCode(-2146233077);
18  }
19 
22  public RemotingException(string message)
23  : base(message)
24  {
25  SetErrorCode(-2146233077);
26  }
27 
31  public RemotingException(string message, Exception InnerException)
32  : base(message, InnerException)
33  {
34  SetErrorCode(-2146233077);
35  }
36 
42  : base(info, context)
43  {
44  }
45  }
46 }
Serves as the base class for system exceptions namespace.
Definition: __Canon.cs:3
RemotingException(string message)
Initializes a new instance of the T:System.Runtime.Remoting.RemotingException class with a specified ...
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
Exception InnerException
Gets the T:System.Exception instance that caused the current exception.
Definition: Exception.cs:139
Stores all the data needed to serialize or deserialize an object. This class cannot be inherited.
RemotingException(string message, Exception InnerException)
Initializes a new instance of the T:System.Runtime.Remoting.RemotingException class with a specified ...
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.
RemotingException(SerializationInfo info, StreamingContext context)
Initializes a new instance of the T:System.Runtime.Remoting.RemotingException class from serialized d...
RemotingException()
Initializes a new instance of the T:System.Runtime.Remoting.RemotingException class with default prop...
The exception that is thrown when something has gone wrong during remoting.