Implemented interface member:
method
GetByte
System.Data.IDataRecord.GetByte(System.Int32)
3 overrides of GetByte
System.Data.Common (1)
System\Data\DataTableReader.cs (1)
330
public override byte
GetByte
(int ordinal)
System.Data.Odbc (1)
System\Data\Odbc\OdbcDataReader.cs (1)
661
public override byte
GetByte
(int i)
System.Data.OleDb (1)
OleDbDataReader.cs (1)
825
public override byte
GetByte
(int ordinal)
7 references to GetByte
Microsoft.ML.Data (6)
DataLoadSave\Database\DatabaseLoaderCursor.cs (6)
304
return (ref byte value) => value = DataReader.
GetByte
(columnIndex);
340
return (ref sbyte value) => value = DataReader.IsDBNull(columnIndex) ? default : (sbyte)DataReader.
GetByte
(columnIndex);
419
editor.Values[i] = DataReader.IsDBNull(columnIndex) ? default : DataReader.
GetByte
(columnIndex);
425
editor.Values[i++] = DataReader.IsDBNull(columnIndex) ? default : DataReader.
GetByte
(columnIndex);
599
editor.Values[i] = DataReader.IsDBNull(columnIndex) ? default : (sbyte)DataReader.
GetByte
(columnIndex);
605
editor.Values[i++] = DataReader.IsDBNull(columnIndex) ? default : (sbyte)DataReader.
GetByte
(columnIndex);
System.Data.Common (1)
System\Data\DataReaderExtensions.cs (1)
25
return reader.
GetByte
(reader.GetOrdinal(name));