EntityDataReader.GetBytes, méthode
[Cette page concerne Entity Framework version 6. La dernière version est disponible sous le nom de package 'Entity Framework' NuGet. Pour plus d'informations sur Entity Framework, consultez msdn.com/data/ef.]
Lit un flux de données d'octets de la colonne spécifiée, en commençant à l'emplacement indiqué par dataIndex, dans la mémoire tampon, en commençant à l'emplacement indiqué par bufferIndex.
Espace de noms : System.Data.Entity.Core.EntityClient
Assembly : EntityFramework (dans EntityFramework.dll)
Syntaxe
'Déclaration
Public Overrides Function GetBytes ( _
ordinal As Integer, _
dataOffset As Long, _
buffer As Byte(), _
bufferOffset As Integer, _
length As Integer _
) As Long
'Utilisation
Dim instance As EntityDataReader
Dim ordinal As Integer
Dim dataOffset As Long
Dim buffer As Byte()
Dim bufferOffset As Integer
Dim length As Integer
Dim returnValue As Long
returnValue = instance.GetBytes(ordinal, _
dataOffset, buffer, bufferOffset, _
length)
public override long GetBytes(
int ordinal,
long dataOffset,
byte[] buffer,
int bufferOffset,
int length
)
public:
virtual long long GetBytes(
int ordinal,
long long dataOffset,
array<unsigned char>^ buffer,
int bufferOffset,
int length
) override
abstract GetBytes :
ordinal:int *
dataOffset:int64 *
buffer:byte[] *
bufferOffset:int *
length:int -> int64
override GetBytes :
ordinal:int *
dataOffset:int64 *
buffer:byte[] *
bufferOffset:int *
length:int -> int64
public override function GetBytes(
ordinal : int,
dataOffset : long,
buffer : byte[],
bufferOffset : int,
length : int
) : long
Paramètres
- ordinal
Type : System.Int32
Numéro de colonne de base zéro.
- dataOffset
Type : System.Int64
Index figurant dans la ligne à partir de laquelle commencer l'opération de lecture.
- buffer
Type : System.Byte[]
Mémoire tampon dans laquelle copier les données.
- bufferOffset
Type : System.Int32
Index avec la mémoire tampon vers laquelle les données seront copiées.
- length
Type : System.Int32
Nombre maximal de caractères à lire.
Valeur de retour
Type : System.Int64
Nombre réel d'octets lus.
Implémentations
IDataRecord.GetBytes(Int32, Int64, Byte[], Int32, Int32)