Implemented interface member:
method
GetInt16
System.Data.IDataRecord.GetInt16(System.Int32)
3 overrides of GetInt16
System.Data.Common (1)
System\Data\DataTableReader.cs (1)
558public override short GetInt16(int ordinal)
System.Data.Odbc (1)
System\Data\Odbc\OdbcDataReader.cs (1)
702public override short GetInt16(int i)
System.Data.OleDb (1)
artifacts\obj\System.Data.OleDb\Debug\net10.0\System.Data.OleDb.notsupported.cs (1)
215public override short GetInt16(int ordinal) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
7 references to GetInt16
Microsoft.ML.Data (6)
DataLoadSave\Database\DatabaseLoaderCursor.cs (6)
322return (ref short value) => value = DataReader.IsDBNull(columnIndex) ? default : DataReader.GetInt16(columnIndex); 358return (ref ushort value) => value = DataReader.IsDBNull(columnIndex) ? default : (ushort)DataReader.GetInt16(columnIndex); 509editor.Values[i] = DataReader.IsDBNull(columnIndex) ? default : DataReader.GetInt16(columnIndex); 515editor.Values[i++] = DataReader.IsDBNull(columnIndex) ? default : DataReader.GetInt16(columnIndex); 689editor.Values[i] = DataReader.IsDBNull(columnIndex) ? default : (ushort)DataReader.GetInt16(columnIndex); 695editor.Values[i++] = DataReader.IsDBNull(columnIndex) ? default : (ushort)DataReader.GetInt16(columnIndex);
System.Data.Common (1)
System\Data\DataReaderExtensions.cs (1)
124return reader.GetInt16(reader.GetOrdinal(name));