Implemented interface member:
method
GetValue
System.Data.IDataRecord.GetValue(System.Int32)
3 overrides of GetValue
System.Data.Common (1)
System\Data\DataTableReader.cs (1)
654public override object GetValue(int ordinal)
System.Data.Odbc (1)
System\Data\Odbc\OdbcDataReader.cs (1)
554public override object GetValue(int i)
System.Data.OleDb (1)
artifacts\obj\System.Data.OleDb\Debug\net9.0\System.Data.OleDb.notsupported.cs (1)
223public override object GetValue(int ordinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
3 references to GetValue
System.Data.Common (3)
System\Data\Common\DbDataReader.cs (2)
202return GetValue(ordinal); 245public virtual T GetFieldValue<T>(int ordinal) => (T)GetValue(ordinal);
System\Data\DataReaderExtensions.cs (1)
182return reader.GetValue(reader.GetOrdinal(name));