DBConcurrencyException.Row Property

Definition

Gets or sets the value of the DataRow that generated the DBConcurrencyException.

public:
 property System::Data::DataRow ^ Row { System::Data::DataRow ^ get(); void set(System::Data::DataRow ^ value); };
public System.Data.DataRow? Row { get; set; }
public System.Data.DataRow Row { get; set; }
member this.Row : System.Data.DataRow with get, set
Public Property Row As DataRow

Property Value

The value of the DataRow.

Remarks

Use Row to retrieve the value of the DataRow row that generated the DBConcurrencyException. Setting the value of the DataRow has no effect.

When performing batch updates with the ContinueUpdateOnError property of the DataAdapter set to true, this exception is thrown if all row updates fail. In this case, this DBConcurrencyException contains DataRow objects for all rows whose update failed, rather than just the one DataRow object in Row, and the affected DataRow objects can be retrieved by calling CopyToRows.

Serialization support does not exist for DataRow objects. Therefore, if you serialize a DBConcurrencyException object, the value of the Row property in the serialized version of the object is set to a null value.

Applies to

See also