Azavea.Open.DAO.Util.CachingDataReader.GetValue C# (CSharp) Method

GetValue() public method

Return the value of the specified field.
The index passed was outside the range of 0 through .
public GetValue ( int i ) : object
i int The index of the field to find.
return object
        public virtual object GetValue(int i)
        {
            if ((i < 0) || (i >= _numCols))
            {
                throw new ArgumentOutOfRangeException("i", "Column index must be >= 0 and < " + _numCols + ".");
            }
            return GetCachedValue(i);
        }