Metodo EntityDataReader.GetBytes
[Questa pagina è specifica della versione 6 di Entity Framework. La versione più recente è disponibile come pacchetto NuGet per "Entity Framework". Per ulteriori informazioni su Entity Framework, vedere la pagina msdn.com/data/ef.]
Legge un flusso di byte dalla colonna specificata, a partire dalla posizione indicata da dataIndex, e nel buffer, a partire dalla posizione indicata da bufferIndex.
Spazio dei nomi: System.Data.Entity.Core.EntityClient
Assembly: EntityFramework (in EntityFramework.dll)
Sintassi
'Dichiarazione
Public Overrides Function GetBytes ( _
ordinal As Integer, _
dataOffset As Long, _
buffer As Byte(), _
bufferOffset As Integer, _
length As Integer _
) As Long
'Utilizzo
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
Parametri
- ordinal
Tipo: System.Int32
Ordinale di colonna in base zero.
- dataOffset
Tipo: System.Int64
Indice all'interno della riga da cui avviare l'operazione di lettura.
- buffer
Tipo: System.Byte[]
Buffer in cui copiare i dati.
- bufferOffset
Tipo: System.Int32
Indice con il buffer in cui verranno copiati i dati.
- length
Tipo: System.Int32
Numero massimo di caratteri da leggere.
Valore restituito
Tipo: System.Int64
Numero effettivo di byte letti.
Implements
IDataRecord.GetBytes(Int32, Int64, Byte[], Int32, Int32)