Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
TargetException.cs
Go to the documentation of this file.
1
using
System.Runtime.CompilerServices
;
2
using
System.Runtime.Serialization
;
3
4
namespace
System.Reflection
;
5
6
[
Serializable
]
7
[
TypeForwardedFrom
(
"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
)]
8
public
class
TargetException
:
ApplicationException
9
{
10
public
TargetException
()
11
:
this
(
null
)
12
{
13
}
14
15
public
TargetException
(
string
? message)
16
:
this
(message,
null
)
17
{
18
}
19
20
public
TargetException
(
string
? message,
Exception
? inner)
21
:
base
(message, inner)
22
{
23
base.HResult
= -2146232829;
24
}
25
26
protected
TargetException
(
SerializationInfo
info
,
StreamingContext
context)
27
:
base
(
info
, context)
28
{
29
}
30
}
System.ApplicationException
Definition
ApplicationException.cs:9
System.Exception
Definition
Exception.cs:15
System.Reflection.TargetException.TargetException
TargetException(string? message, Exception? inner)
Definition
TargetException.cs:20
System.Reflection.TargetException.TargetException
TargetException(SerializationInfo info, StreamingContext context)
Definition
TargetException.cs:26
System.Reflection.TargetException.TargetException
TargetException()
Definition
TargetException.cs:10
System.Reflection.TargetException.TargetException
TargetException(string? message)
Definition
TargetException.cs:15
System.Reflection.TargetException
Definition
TargetException.cs:9
System.Runtime.Serialization.SerializationInfo
Definition
SerializationInfo.cs:7
System.Reflection.TypeAttributes.Serializable
@ Serializable
System.Reflection
Definition
ICustomTypeProvider.cs:1
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.Runtime.Serialization.StreamingContext
Definition
StreamingContext.cs:6
source
System.Private.CoreLib
System.Reflection
TargetException.cs
Generated by
1.10.0