Condividi tramite


DbDataRecord.GetBytes(Int32, Int64, Byte[], Int32, Int32) Metodo

Definizione

Restituisce il valore della colonna specificata come matrice di byte.

public:
 abstract long GetBytes(int i, long dataIndex, cli::array <System::Byte> ^ buffer, int bufferIndex, int length);
public:
 virtual long GetBytes(int i, long dataIndex, cli::array <System::Byte> ^ buffer, int bufferIndex, int length);
public abstract long GetBytes (int i, long dataIndex, byte[] buffer, int bufferIndex, int length);
public abstract long GetBytes (int i, long dataIndex, byte[]? buffer, int bufferIndex, int length);
public long GetBytes (int i, long dataIndex, byte[] buffer, int bufferIndex, int length);
abstract member GetBytes : int * int64 * byte[] * int * int -> int64
abstract member GetBytes : int * int64 * byte[] * int * int -> int64
override this.GetBytes : int * int64 * byte[] * int * int -> int64
Public MustOverride Function GetBytes (i As Integer, dataIndex As Long, buffer As Byte(), bufferIndex As Integer, length As Integer) As Long
Public Function GetBytes (i As Integer, dataIndex As Long, buffer As Byte(), bufferIndex As Integer, length As Integer) As Long

Parametri

i
Int32

Ordinale di colonna in base zero.

dataIndex
Int64

Indice all'interno del campo da cui avviare l'operazione di lettura.

buffer
Byte[]

Buffer in cui leggere il flusso di byte.

bufferIndex
Int32

Indice di buffer per avviare l'operazione di lettura.

length
Int32

Numero di byte da leggere.

Restituisce

Valore della colonna specificata.

Implementazioni

Commenti

Non vengono eseguite conversioni; pertanto i dati recuperati devono essere già una matrice di byte.

Si applica a

Vedi anche