Implemented interface member:
method
GetValue
System.Data.IDataRecord.GetValue(System.Int32)
3 overrides of GetValue
System.Data.Common (1)
System\Data\DataTableReader.cs (1)
654
public override object
GetValue
(int ordinal)
System.Data.Odbc (1)
System\Data\Odbc\OdbcDataReader.cs (1)
554
public override object
GetValue
(int i)
System.Data.OleDb (1)
artifacts\obj\System.Data.OleDb\Debug\net10.0\System.Data.OleDb.notsupported.cs (1)
223
public 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)
202
return
GetValue
(ordinal);
245
public virtual T GetFieldValue<T>(int ordinal) => (T)
GetValue
(ordinal);
System\Data\DataReaderExtensions.cs (1)
182
return reader.
GetValue
(reader.GetOrdinal(name));