Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
FillErrorEventArgs.cs
Go to the documentation of this file.
1
namespace
System.Data
;
2
3
public
class
FillErrorEventArgs
:
EventArgs
4
{
5
private
bool
_continueFlag
;
6
7
private
readonly
DataTable
_dataTable
;
8
9
private
Exception
_errors
;
10
11
private
readonly
object
[]
_values
;
12
13
public
bool
Continue
14
{
15
get
16
{
17
return
_continueFlag
;
18
}
19
set
20
{
21
_continueFlag
=
value
;
22
}
23
}
24
25
public
DataTable
?
DataTable
=>
_dataTable
;
26
27
public
Exception
?
Errors
28
{
29
get
30
{
31
return
_errors
;
32
}
33
set
34
{
35
_errors
=
value
;
36
}
37
}
38
39
public
object
?[]
Values
40
{
41
get
42
{
43
object
[]
array
=
new
object
[
_values
.Length];
44
for
(
int
i = 0; i <
_values
.Length; i++)
45
{
46
array
[i] =
_values
[i];
47
}
48
return
array
;
49
}
50
}
51
52
public
FillErrorEventArgs
(
DataTable
? dataTable,
object
?[]?
values
)
53
{
54
_dataTable
= dataTable;
55
_values
=
values
??
Array
.Empty<
object
>();
56
}
57
}
System.Array
Definition
Array.cs:16
System.Data.DataTable
Definition
DataTable.cs:29
System.Data.FillErrorEventArgs.Values
object?[] Values
Definition
FillErrorEventArgs.cs:40
System.Data.FillErrorEventArgs.Continue
bool Continue
Definition
FillErrorEventArgs.cs:14
System.Data.FillErrorEventArgs.Errors
Exception? Errors
Definition
FillErrorEventArgs.cs:28
System.Data.FillErrorEventArgs._values
readonly object[] _values
Definition
FillErrorEventArgs.cs:11
System.Data.FillErrorEventArgs._errors
Exception _errors
Definition
FillErrorEventArgs.cs:9
System.Data.FillErrorEventArgs._continueFlag
bool _continueFlag
Definition
FillErrorEventArgs.cs:5
System.Data.FillErrorEventArgs._dataTable
readonly DataTable _dataTable
Definition
FillErrorEventArgs.cs:7
System.Data.FillErrorEventArgs.FillErrorEventArgs
FillErrorEventArgs(DataTable? dataTable, object?[]? values)
Definition
FillErrorEventArgs.cs:52
System.Data.FillErrorEventArgs
Definition
FillErrorEventArgs.cs:4
System.EventArgs
Definition
EventArgs.cs:8
System.Exception
Definition
Exception.cs:15
System.Data
Definition
ADP.cs:12
System.ExceptionArgument.value
@ value
System.ExceptionArgument.values
@ values
System.ExceptionArgument.array
@ array
source
System.Data.Common
System.Data
FillErrorEventArgs.cs
Generated by
1.10.0