Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
ContextMarshalException.cs
Go to the documentation of this file.
3
4namespace System;
5
7[TypeForwardedFrom("mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089")]
9{
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
27 : base(info, context)
28 {
29 }
30}
ContextMarshalException(string? message, Exception? inner)
ContextMarshalException(SerializationInfo info, StreamingContext context)
Definition SR.cs:7