Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
ConstraintException.cs
Go to the documentation of this file.
1
using
System.Runtime.CompilerServices
;
2
using
System.Runtime.Serialization
;
3
4
namespace
System.Data
;
5
6
[
Serializable
]
7
[
TypeForwardedFrom
(
"System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
)]
8
public
class
ConstraintException
:
DataException
9
{
10
protected
ConstraintException
(
SerializationInfo
info
,
StreamingContext
context)
11
:
base
(
info
, context)
12
{
13
}
14
15
public
ConstraintException
()
16
:
base
(
System
.
SR
.DataSet_DefaultConstraintException)
17
{
18
base.HResult
= -2146232022;
19
}
20
21
public
ConstraintException
(
string
?
s
)
22
:
base
(
s
)
23
{
24
base.HResult
= -2146232022;
25
}
26
27
public
ConstraintException
(
string
? message,
Exception
?
innerException
)
28
:
base
(message,
innerException
)
29
{
30
base.HResult
= -2146232022;
31
}
32
}
System.Data.ConstraintException.ConstraintException
ConstraintException(string? s)
Definition
ConstraintException.cs:21
System.Data.ConstraintException.ConstraintException
ConstraintException(string? message, Exception? innerException)
Definition
ConstraintException.cs:27
System.Data.ConstraintException.ConstraintException
ConstraintException(SerializationInfo info, StreamingContext context)
Definition
ConstraintException.cs:10
System.Data.ConstraintException.ConstraintException
ConstraintException()
Definition
ConstraintException.cs:15
System.Data.ConstraintException
Definition
ConstraintException.cs:9
System.Data.DataException
Definition
DataException.cs:9
System.Exception
Definition
Exception.cs:15
System.Runtime.Serialization.SerializationInfo
Definition
SerializationInfo.cs:7
System.SR
Definition
SR.cs:7
System.Data.IsolationLevel.Serializable
@ Serializable
System.Data
Definition
ADP.cs:12
System.Runtime.CompilerServices
Definition
NullablePublicOnlyAttribute.cs:3
System.Runtime.Serialization.CollectionKind.Dictionary
@ Dictionary
System.Runtime.Serialization
Definition
SerializationGuard.cs:3
System.ExceptionArgument.s
@ s
System.ExceptionArgument.info
@ info
System
Definition
BlockingCollection.cs:8
System.Runtime.Serialization.StreamingContext
Definition
StreamingContext.cs:6
source
System.Data.Common
System.Data
ConstraintException.cs
Generated by
1.10.0