1 write to ItemArray
System.Data (1)
fx\src\data\System\Data\DataRowCollection.cs (1)
112
row.
ItemArray
= values;
9 references to ItemArray
System.Data (7)
fx\src\data\System\Data\Common\DbProviderFactories.cs (1)
212
dataTable.Rows.Add(configDataTable.Rows[i].
ItemArray
);
fx\src\data\System\Data\DataTableReader.cs (5)
579
Array.Copy(currentDataRow.
ItemArray
, values, currentDataRow.
ItemArray
.Length > values.Length ? values.Length : currentDataRow.
ItemArray
.Length);
580
return (currentDataRow.
ItemArray
.Length > values.Length ? values.Length : currentDataRow.
ItemArray
.Length);
fx\src\data\System\Data\SqlClient\SqlBulkCopy.cs (1)
1052
_currentRowLength = _currentRow.
ItemArray
.Length;
System.Data.DataSetExtensions (1)
System\Data\DataTableExtensions.cs (1)
195
values = current.
ItemArray
;
System.Web (1)
Handlers\TraceHandler.cs (1)
537
cells = ((DataRow) en.Current).
ItemArray
;