Relativity.DataExchange.Data.SqlDataRow
Represents a SQL data row. This class cannot be inherited, backwards compatibility isn't guaranteed, and should never be consumed by API users.
namespace Relativity.DataExchange.Data
{
public sealed class SqlDataRow
{
public object this[int index] { get; set; }
public object this[string fieldName] { get; set; }
public SqlDataRow(DataRowView row);
}
}