Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
ContextMarshalException.cs
Go to the documentation of this file.
1
using
System.Runtime.CompilerServices
;
2
using
System.Runtime.Serialization
;
3
4
namespace
System
;
5
6
[
Serializable
]
7
[
TypeForwardedFrom
(
"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
)]
8
public
class
ContextMarshalException
:
SystemException
9
{
10
public
ContextMarshalException
()
11
:
this
(
SR
.Arg_ContextMarshalException,
null
)
12
{
13
}
14
15
public
ContextMarshalException
(
string
? message)
16
:
this
(message,
null
)
17
{
18
}
19
20
public
ContextMarshalException
(
string
? message,
Exception
? inner)
21
:
base
(message, inner)
22
{
23
base.HResult
= -2146233084;
24
}
25
26
protected
ContextMarshalException
(
SerializationInfo
info
,
StreamingContext
context)
27
:
base
(
info
, context)
28
{
29
}
30
}
System.ContextMarshalException.ContextMarshalException
ContextMarshalException(string? message)
Definition
ContextMarshalException.cs:15
System.ContextMarshalException.ContextMarshalException
ContextMarshalException(string? message, Exception? inner)
Definition
ContextMarshalException.cs:20
System.ContextMarshalException.ContextMarshalException
ContextMarshalException()
Definition
ContextMarshalException.cs:10
System.ContextMarshalException.ContextMarshalException
ContextMarshalException(SerializationInfo info, StreamingContext context)
Definition
ContextMarshalException.cs:26
System.ContextMarshalException
Definition
ContextMarshalException.cs:9
System.Exception
Definition
Exception.cs:15
System.Runtime.Serialization.SerializationInfo
Definition
SerializationInfo.cs:7
System.SR
Definition
SR.cs:7
System.SystemException
Definition
SystemException.cs:9
System.Data.IsolationLevel.Serializable
@ Serializable
System.Runtime.CompilerServices
Definition
NullablePublicOnlyAttribute.cs:3
System.Runtime.Serialization.CollectionKind.Dictionary
@ Dictionary
System.Runtime.Serialization
Definition
SerializationGuard.cs:3
System.ExceptionArgument.info
@ info
System
Definition
BlockingCollection.cs:8
System.Runtime.Serialization.StreamingContext
Definition
StreamingContext.cs:6
source
System.Private.CoreLib
System
ContextMarshalException.cs
Generated by
1.10.0