mscorlib(4.0.0.0) API with additions
RemotingException.cs
1
using
System
.
Runtime
.
InteropServices
;
2
using
System
.
Runtime
.
Serialization
;
3
4
namespace
System.Runtime.Remoting
5
{
7
[
Serializable
]
8
[ComVisible(
true
)]
9
public
class
RemotingException
:
SystemException
10
{
11
private
static
string
_nullMessage =
Environment
.GetResourceString(
"Remoting_Default"
);
12
14
public
RemotingException
()
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
41
protected
RemotingException
(
SerializationInfo
info,
StreamingContext
context)
42
: base(info, context)
43
{
44
}
45
}
46
}
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.Remoting.RemotingException.RemotingException
RemotingException(string message)
Initializes a new instance of the T:System.Runtime.Remoting.RemotingException class with a specified ...
Definition:
RemotingException.cs:22
System.Runtime.Serialization.StreamingContext
Describes the source and destination of a given serialized stream, and provides an additional caller-...
Definition:
StreamingContext.cs:9
System.Environment
Provides information about, and means to manipulate, the current environment and platform....
Definition:
Environment.cs:21
System.Exception.InnerException
Exception InnerException
Gets the T:System.Exception instance that caused the current exception.
Definition:
Exception.cs:139
System.Runtime.Serialization
Definition:
DeserializationEventHandler.cs:1
System.Runtime.Remoting
Definition:
__HResults.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.Runtime.Remoting.RemotingException.RemotingException
RemotingException(string message, Exception InnerException)
Initializes a new instance of the T:System.Runtime.Remoting.RemotingException class with a specified ...
Definition:
RemotingException.cs:31
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.Runtime.Remoting.RemotingException.RemotingException
RemotingException(SerializationInfo info, StreamingContext context)
Initializes a new instance of the T:System.Runtime.Remoting.RemotingException class from serialized d...
Definition:
RemotingException.cs:41
System.Runtime.Remoting.RemotingException.RemotingException
RemotingException()
Initializes a new instance of the T:System.Runtime.Remoting.RemotingException class with default prop...
Definition:
RemotingException.cs:14
System.Runtime.Remoting.RemotingException
The exception that is thrown when something has gone wrong during remoting.
Definition:
RemotingException.cs:9
All cs
System.Runtime.Remoting
RemotingException.cs
Generated by
1.8.15