Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
DataType
Type
System.Data.Common.DbSchemaRow.DataType
get
package
Definition at line
248
of file
DbSchemaRow.cs
.
249
{
250
[RequiresUnreferencedCode(
"DataRow's DataType cannot be statically analyzed"
)]
251
get
252
{
253
if
(
_schemaTable
.
DataType
!=
null
)
254
{
255
object
obj
=
_dataRow
[
_schemaTable
.
DataType
,
DataRowVersion
.Default];
256
if
(!
Convert
.IsDBNull(
obj
))
257
{
258
return
(
Type
)
obj
;
259
}
260
}
261
return
null
;
262
}
263
}
System.Data.Common.DbSchemaRow._schemaTable
readonly DbSchemaTable _schemaTable
Definition
DbSchemaRow.cs:8
System.Data.Common.DbSchemaRow._dataRow
readonly DataRow _dataRow
Definition
DbSchemaRow.cs:10
System.Data.Common.DbSchemaTable.DataType
DataColumn DataType
Definition
DbSchemaTable.cs:98
System.Data.Common.StorageType.Type
@ Type
System.Data.DataRowVersion
DataRowVersion
Definition
DataRowVersion.cs:4
System.Data.FunctionId.Convert
@ Convert
System.ExceptionArgument.obj
@ obj
System
Data
Common
DbSchemaRow
Generated by
1.10.0