System.Data.DataRow.this C# (CSharp) Method

this() public method

Gets the data stored in the column, specified by index and version of the data to retrieve.
public this ( int columnIndex, DataRowVersion version ) : object
columnIndex int
version DataRowVersion
return object
        public object this[int columnIndex, DataRowVersion version]
        {
            get
            {
                DataColumn column = _columns[columnIndex];
                int record = GetRecordFromVersion(version);
                _table._recordManager.VerifyRecord(record, this);
                VerifyValueFromStorage(column, version, column[record]);
                return column[record];
            }
        }

Same methods

DataRow::this ( DataColumn column ) : object
DataRow::this ( DataColumn column, DataRowVersion version ) : object
DataRow::this ( int columnIndex ) : object
DataRow::this ( string columnName ) : object
DataRow::this ( string columnName, DataRowVersion version ) : object