Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
SEHException.cs
Go to the documentation of this file.
1
using
System.Runtime.CompilerServices
;
2
using
System.Runtime.Serialization
;
3
4
namespace
System.Runtime.InteropServices
;
5
6
[
Serializable
]
7
[
TypeForwardedFrom
(
"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
)]
8
public
class
SEHException
:
ExternalException
9
{
10
public
SEHException
()
11
{
12
base.HResult
= -2147467259;
13
}
14
15
public
SEHException
(
string
? message)
16
:
base
(message)
17
{
18
base.HResult
= -2147467259;
19
}
20
21
public
SEHException
(
string
? message,
Exception
? inner)
22
:
base
(message, inner)
23
{
24
base.HResult
= -2147467259;
25
}
26
27
protected
SEHException
(
SerializationInfo
info
,
StreamingContext
context)
28
:
base
(
info
, context)
29
{
30
}
31
32
public
virtual
bool
CanResume
()
33
{
34
return
false
;
35
}
36
}
System.Exception
Definition
Exception.cs:15
System.Runtime.InteropServices.ExternalException
Definition
ExternalException.cs:9
System.Runtime.InteropServices.SEHException.SEHException
SEHException(string? message, Exception? inner)
Definition
SEHException.cs:21
System.Runtime.InteropServices.SEHException.SEHException
SEHException(SerializationInfo info, StreamingContext context)
Definition
SEHException.cs:27
System.Runtime.InteropServices.SEHException.SEHException
SEHException(string? message)
Definition
SEHException.cs:15
System.Runtime.InteropServices.SEHException.CanResume
virtual bool CanResume()
Definition
SEHException.cs:32
System.Runtime.InteropServices.SEHException.SEHException
SEHException()
Definition
SEHException.cs:10
System.Runtime.InteropServices.SEHException
Definition
SEHException.cs:9
System.Runtime.Serialization.SerializationInfo
Definition
SerializationInfo.cs:7
System.Data.IsolationLevel.Serializable
@ Serializable
System.Runtime.CompilerServices
Definition
NullablePublicOnlyAttribute.cs:3
System.Runtime.InteropServices
Definition
SequenceMarshal.cs:4
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.Runtime.InteropServices
SEHException.cs
Generated by
1.10.0