Implemented interface member:
method
GetBytes
System.Data.IDataRecord.GetBytes(System.Int32, System.Int64, System.Byte[], System.Int32, System.Int32)
3 overrides of GetBytes
System.Data.Common (1)
System\Data\DataTableReader.cs (1)
346public override long GetBytes(int ordinal, long dataIndex, byte[]? buffer, int bufferIndex, int length)
System.Data.Odbc (1)
System\Data\Odbc\OdbcDataReader.cs (1)
1071public override long GetBytes(int i, long dataIndex, byte[]? buffer, int bufferIndex, int length)
System.Data.OleDb (1)
artifacts\obj\System.Data.OleDb\Debug\net9.0\System.Data.OleDb.notsupported.cs (1)
200public override long GetBytes(int ordinal, long dataIndex, byte[]? buffer, int bufferIndex, int length) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
2 references to GetBytes
System.Data.Common (2)
System\Data\Common\DbDataReader.cs (1)
221bytesRead = GetBytes(ordinal, bytesReadTotal, buffer, 0, buffer.Length);
System\Data\DataReaderExtensions.cs (1)
32return reader.GetBytes(reader.GetOrdinal(name), dataOffset, buffer, bufferOffset, length);