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