Implemented interface member:
method
GetInt16
System.Data.IDataRecord.GetInt16(System.Int32)
3 overrides of GetInt16
System.Data.Common (1)
System\Data\DataTableReader.cs (1)
558
public override short
GetInt16
(int ordinal)
System.Data.Odbc (1)
System\Data\Odbc\OdbcDataReader.cs (1)
702
public override short
GetInt16
(int i)
System.Data.OleDb (1)
artifacts\obj\System.Data.OleDb\Debug\net10.0\System.Data.OleDb.notsupported.cs (1)
215
public 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)
322
return (ref short value) => value = DataReader.IsDBNull(columnIndex) ? default : DataReader.
GetInt16
(columnIndex);
358
return (ref ushort value) => value = DataReader.IsDBNull(columnIndex) ? default : (ushort)DataReader.
GetInt16
(columnIndex);
509
editor.Values[i] = DataReader.IsDBNull(columnIndex) ? default : DataReader.
GetInt16
(columnIndex);
515
editor.Values[i++] = DataReader.IsDBNull(columnIndex) ? default : DataReader.
GetInt16
(columnIndex);
689
editor.Values[i] = DataReader.IsDBNull(columnIndex) ? default : (ushort)DataReader.
GetInt16
(columnIndex);
695
editor.Values[i++] = DataReader.IsDBNull(columnIndex) ? default : (ushort)DataReader.
GetInt16
(columnIndex);
System.Data.Common (1)
System\Data\DataReaderExtensions.cs (1)
124
return reader.
GetInt16
(reader.GetOrdinal(name));