DbDataRecord.GetBytes(Int32, Int64, Byte[], Int32, Int32) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Renvoie la valeur de la colonne spécifiée sous la forme d’un tableau d’octets.
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
Paramètres
- i
- Int32
Numéro de colonne de base zéro.
- dataIndex
- Int64
L’index figurant dans le champ à partir duquel l’opération de lecture doit être lancée.
- buffer
- Byte[]
La mémoire tampon dans laquelle le flux d’octets doit être lu.
- bufferIndex
- Int32
L’index pour que buffer
démarre l’opération de lecture.
- length
- Int32
Nombre d'octets à lire.
Retours
Valeur de la colonne spécifiée.
Implémente
Remarques
Aucune conversion n’est effectuée ; Par conséquent, les données récupérées doivent déjà être un tableau d’octets.