DbDataReader.GetChars(Int32, Int64, Char[], Int32, Int32) Método

Definição

Quando substituído em uma classe derivada, lê um número de caracteres especificado de uma coluna especificada, começando em um índice especificado, e os grava em um buffer começando em uma posição especificada.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

Parâmetros

ordinal
Int32

O ordinal da coluna baseado em zero.The zero-based column ordinal.

dataOffset
Int64

O índice na linha na qual a operação de leitura é iniciada.The index within the row from which to begin the read operation.

buffer
Char[]

O buffer no qual os dados são copiados.The buffer into which to copy the data.

bufferOffset
Int32

O índice com o buffer no qual os dados serão copiados.The index with the buffer to which the data will be copied.

length
Int32

O número máximo de caracteres a serem lidos.The maximum number of characters to read.

Retornos

Int64

O número real de caracteres lidos.The actual number of characters read.

Implementações

Aplica-se a