DataRow.GetColumnError Method (Int32)
Gets the error description for the column specified by index.
Assembly: System.Data (in System.Data.dll)
Parameters
- columnIndex
- Type: System.Int32
The zero-based index of the column.
| Exception | Condition |
|---|---|
| IndexOutOfRangeException | The columnIndex argument is out of range. |
Use the SetColumnError method to set column errors.
To determine whether any errors exist for the columns collection, use the HasErrors method. Consequently, you can use the GetColumnsInError method to retrieve all the columns with errors.
To clear all errors for the columns collection, use the ClearErrors method.
The following example sets an error description for a specified DataRow.
private void SetColError(DataRow row, int columnIndex) { string errorString = "Replace this text."; // Set the error for the specified column of the row. row.SetColumnError(columnIndex, errorString); } private void PrintColError(DataRow row, int columnIndex) { // Print the error of a specified column. Console.WriteLine(row.GetColumnError(columnIndex)); }
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.