RowUpdatedEventArgs.CopyToRows Method

Definition

Lets you access the rows processed during a batch update operation.

Overloads

CopyToRows(DataRow[])

Copies references to the modified rows into the provided array.

CopyToRows(DataRow[], Int32)

Copies references to the modified rows into the provided array.

Remarks

For more information, see Handling Batch Update-related Events and Errors.

CopyToRows(DataRow[])

Source:
RowUpdatedEventArgs.cs
Source:
RowUpdatedEventArgs.cs
Source:
RowUpdatedEventArgs.cs

Copies references to the modified rows into the provided array.

C#
public void CopyToRows(System.Data.DataRow[] array);

Parameters

array
DataRow[]

The array of DataRow to copy into.

Remarks

array must be at least RowCount in length.

Throws an ArgumentNullException for a null instance of DataRow.

See also

Applies to

.NET 10 and other versions
Product Versions
.NET Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1

CopyToRows(DataRow[], Int32)

Source:
RowUpdatedEventArgs.cs
Source:
RowUpdatedEventArgs.cs
Source:
RowUpdatedEventArgs.cs

Copies references to the modified rows into the provided array.

C#
public void CopyToRows(System.Data.DataRow[] array, int arrayIndex);

Parameters

array
DataRow[]

The array of DataRow to copy into.

arrayIndex
Int32

The index in the array to start copying into.

Remarks

array must be at least RowCount + arrayIndex in length.

Throws an ArgumentNullException for a null instance of DataRow.

See also

Applies to

.NET 10 and other versions
Product Versions
.NET Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1