Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ IsDBNull()

override bool System.Data.DataTableReader.IsDBNull ( int ordinal)
inline

Implements System.Data.IDataRecord.

Definition at line 666 of file DataTableReader.cs.

667 {
668 ValidateState("IsDBNull");
670 try
671 {
672 return _currentDataRow.IsNull(ordinal);
673 }
674 catch (IndexOutOfRangeException e)
675 {
676 ExceptionBuilder.TraceExceptionWithoutRethrow(e);
677 throw ExceptionBuilder.ArgumentOutOfRange("ordinal");
678 }
679 }
bool IsNull(int columnIndex)
Definition DataRow.cs:984
void ValidateState(string caller)

References System.Data.DataTableReader._currentDataRow, System.Data.ExceptionBuilder.ArgumentOutOfRange(), System.Data.DataRow.IsNull(), System.Data.ExceptionBuilder.TraceExceptionWithoutRethrow(), System.Data.DataTableReader.ValidateReader(), and System.Data.DataTableReader.ValidateState().