Class Row
Represents the information from a DataRow object that has errors.
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
Namespace: IRM.Data
Assembly: IRM.dll
Syntax
[Serializable]
public class Row
Properties
Columns
Gets or sets the list of Column obects that has errors.
Declaration
public List<Column> Columns { get; set; }
Property Value
List<Column>
The list of Column obects that has errors. |
RowError
Gets or sets the row-error.
Declaration
public string RowError { get; set; }
Property Value
String
The row-error. |
RowNumber
Gets or sets the index of the row.
Declaration
public int? RowNumber { get; set; }
Property Value
System.Nullable<System.Int32>
The index of the row. |