DbDataReader.GetChars(Int32, Int64, Char[], Int32, Int32) Метод
Определение
При переопределении в производном классе считывает указанное число символов из указанного столбца, начиная с указанного индекса, и записывает их в буфер, начиная с указанной позиции.When overridden in a derived class, reads a specified number of characters from a specified column starting at a specified index, and writes them to a buffer starting at a specified position.
public:
abstract long GetChars(int ordinal, long dataOffset, cli::array <char> ^ buffer, int bufferOffset, int length);
public abstract long GetChars (int ordinal, long dataOffset, char[] buffer, int bufferOffset, int length);
public abstract long GetChars (int ordinal, long dataOffset, char[]? buffer, int bufferOffset, int length);
abstract member GetChars : int * int64 * char[] * int * int -> int64
Public MustOverride Function GetChars (ordinal As Integer, dataOffset As Long, buffer As Char(), bufferOffset As Integer, length As Integer) As Long
Параметры
- ordinal
- Int32
Порядковый номер столбца (от нуля).The zero-based column ordinal.
- dataOffset
- Int64
Индекс в строке, с которого необходимо начать считывание.The index within the row from which to begin the read operation.
- buffer
- Char[]
Буфер, в который копируются данные.The buffer into which to copy the data.
- bufferOffset
- Int32
Индекс в буфере, куда будут копироваться данные.The index with the buffer to which the data will be copied.
- length
- Int32
Максимальное число считываемых символов.The maximum number of characters to read.
Возвращаемое значение
Число фактически считанных символов.The actual number of characters read.