Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
CustomAttributeFormatException.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
CustomAttributeFormatException
:
FormatException
9
{
10
public
CustomAttributeFormatException
()
11
:
this
(
SR
.Arg_CustomAttributeFormatException)
12
{
13
}
14
15
public
CustomAttributeFormatException
(
string
? message)
16
:
this
(message,
null
)
17
{
18
}
19
20
public
CustomAttributeFormatException
(
string
? message,
Exception
? inner)
21
:
base
(message, inner)
22
{
23
base.HResult
= -2146232827;
24
}
25
26
protected
CustomAttributeFormatException
(
SerializationInfo
info
,
StreamingContext
context)
27
:
base
(
info
, context)
28
{
29
}
30
}
System.Exception
Definition
Exception.cs:15
System.FormatException
Definition
FormatException.cs:9
System.Reflection.CustomAttributeFormatException.CustomAttributeFormatException
CustomAttributeFormatException()
Definition
CustomAttributeFormatException.cs:10
System.Reflection.CustomAttributeFormatException.CustomAttributeFormatException
CustomAttributeFormatException(SerializationInfo info, StreamingContext context)
Definition
CustomAttributeFormatException.cs:26
System.Reflection.CustomAttributeFormatException.CustomAttributeFormatException
CustomAttributeFormatException(string? message)
Definition
CustomAttributeFormatException.cs:15
System.Reflection.CustomAttributeFormatException.CustomAttributeFormatException
CustomAttributeFormatException(string? message, Exception? inner)
Definition
CustomAttributeFormatException.cs:20
System.Reflection.CustomAttributeFormatException
Definition
CustomAttributeFormatException.cs:9
System.Runtime.Serialization.SerializationInfo
Definition
SerializationInfo.cs:7
System.SR
Definition
SR.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
CustomAttributeFormatException.cs
Generated by
1.10.0