EntityDataReader.GetChars, 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 de caractères 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 GetChars ( _
ordinal As Integer, _
dataOffset As Long, _
buffer As Char(), _
bufferOffset As Integer, _
length As Integer _
) As Long
'Utilisation
Dim instance As EntityDataReader
Dim ordinal As Integer
Dim dataOffset As Long
Dim buffer As Char()
Dim bufferOffset As Integer
Dim length As Integer
Dim returnValue As Long
returnValue = instance.GetChars(ordinal, _
dataOffset, buffer, bufferOffset, _
length)
public override long GetChars(
int ordinal,
long dataOffset,
char[] buffer,
int bufferOffset,
int length
)
public:
virtual long long GetChars(
int ordinal,
long long dataOffset,
array<wchar_t>^ buffer,
int bufferOffset,
int length
) override
abstract GetChars :
ordinal:int *
dataOffset:int64 *
buffer:char[] *
bufferOffset:int *
length:int -> int64
override GetChars :
ordinal:int *
dataOffset:int64 *
buffer:char[] *
bufferOffset:int *
length:int -> int64
public override function GetChars(
ordinal : int,
dataOffset : long,
buffer : char[],
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.Char[]
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 de caractères lus.
Implémentations
IDataRecord.GetChars(Int32, Int64, Char[], Int32, Int32)