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

◆ SetValue()

void System.Data.DataColumn.SetValue ( int record,
object value )
inlinepackage

Definition at line 1211 of file DataColumn.cs.

1212 {
1213 try
1214 {
1216 }
1217 catch (Exception ex)
1218 {
1219 ExceptionBuilder.TraceExceptionForCapture(ex);
1220 throw ExceptionBuilder.SetFailed(value, this, DataType, ex);
1221 }
1222 DataRow dataRow = GetDataRow(record);
1223 if (dataRow != null)
1224 {
1226 }
1227 }
void Set(int recordNo, object value)
DataRow GetDataRow(int index)

References System.Data.DataColumn._storage, System.Data.DataColumn.DataType, System.Xml.Dictionary, System.Data.DataColumn.GetDataRow(), System.Data.Common.DataStorage.Set(), System.Data.ExceptionBuilder.SetFailed(), System.Data.ExceptionBuilder.TraceExceptionForCapture(), and System.value.