Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
IDataParameter.cs
Go to the documentation of this file.
2
3namespace System.Data;
4
5public interface IDataParameter
6{
7 DbType DbType { get; set; }
8
10
11 bool IsNullable { get; }
12
14 {
15 get; [param: AllowNull]
16 set;
17 }
18
20 {
21 get; [param: AllowNull]
22 set;
23 }
24
26
27 object? Value { get; set; }
28}
ParameterDirection Direction