Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
IDataParameter.cs
Go to the documentation of this file.
1
using
System.Diagnostics.CodeAnalysis
;
2
3
namespace
System.Data
;
4
5
public
interface
IDataParameter
6
{
7
DbType
DbType
{
get
;
set
; }
8
9
ParameterDirection
Direction
{
get
;
set
; }
10
11
bool
IsNullable
{
get
; }
12
13
string
ParameterName
14
{
15
get
; [param: AllowNull]
16
set
;
17
}
18
19
string
SourceColumn
20
{
21
get
; [param: AllowNull]
22
set
;
23
}
24
25
DataRowVersion
SourceVersion
{
get
;
set
; }
26
27
object
?
Value
{
get
;
set
; }
28
}
System.Data.IDataParameter.Direction
ParameterDirection Direction
Definition
IDataParameter.cs:9
System.Data.IDataParameter.SourceVersion
DataRowVersion SourceVersion
Definition
IDataParameter.cs:25
System.Data.IDataParameter.ParameterName
string ParameterName
Definition
IDataParameter.cs:14
System.Data.IDataParameter.IsNullable
bool IsNullable
Definition
IDataParameter.cs:11
System.Data.IDataParameter.Value
object? Value
Definition
IDataParameter.cs:27
System.Data.IDataParameter.SourceColumn
string SourceColumn
Definition
IDataParameter.cs:20
System.Data.IDataParameter
Definition
IDataParameter.cs:6
System.Data.ParameterDirection
ParameterDirection
Definition
ParameterDirection.cs:4
System.Data.DataRowVersion
DataRowVersion
Definition
DataRowVersion.cs:4
System.Data.DbType
DbType
Definition
DbType.cs:4
System.Data
Definition
ADP.cs:12
System.Diagnostics.CodeAnalysis
Definition
AllowNullAttribute.cs:1
source
System.Data.Common
System.Data
IDataParameter.cs
Generated by
1.10.0