Condividi tramite


Metodo DbUpdatableDataRecord.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.]

Recupera il valore del campo come matrice di byte.

Spazio dei nomi:  System.Data.Entity.Core.Objects
Assembly:  EntityFramework (in EntityFramework.dll)

Sintassi

'Dichiarazione
<SuppressMessageAttribute("Microsoft.Usage", "CA2201:DoNotRaiseReservedExceptionTypes")> _
Public Overrides Function GetBytes ( _
    i As Integer, _
    dataIndex As Long, _
    buffer As Byte(), _
    bufferIndex As Integer, _
    length As Integer _
) As Long
'Utilizzo
Dim instance As DbUpdatableDataRecord 
Dim i As Integer 
Dim dataIndex As Long 
Dim buffer As Byte()
Dim bufferIndex As Integer 
Dim length As Integer 
Dim returnValue As Long 

returnValue = instance.GetBytes(i, dataIndex, _
    buffer, bufferIndex, length)
[SuppressMessageAttribute("Microsoft.Usage", "CA2201:DoNotRaiseReservedExceptionTypes")]
public override long GetBytes(
    int i,
    long dataIndex,
    byte[] buffer,
    int bufferIndex,
    int length
)
[SuppressMessageAttribute(L"Microsoft.Usage", L"CA2201:DoNotRaiseReservedExceptionTypes")]
public:
virtual long long GetBytes(
    int i, 
    long long dataIndex, 
    array<unsigned char>^ buffer, 
    int bufferIndex, 
    int length
) override
[<SuppressMessageAttribute("Microsoft.Usage", "CA2201:DoNotRaiseReservedExceptionTypes")>]
abstract GetBytes : 
        i:int * 
        dataIndex:int64 * 
        buffer:byte[] * 
        bufferIndex:int * 
        length:int -> int64 
[<SuppressMessageAttribute("Microsoft.Usage", "CA2201:DoNotRaiseReservedExceptionTypes")>]
override GetBytes : 
        i:int * 
        dataIndex:int64 * 
        buffer:byte[] * 
        bufferIndex:int * 
        length:int -> int64
public override function GetBytes(
    i : int, 
    dataIndex : long, 
    buffer : byte[], 
    bufferIndex : int, 
    length : int
) : long

Parametri

  • dataIndex
    Tipo: System.Int64
    Indice da cui iniziare la copia dei dati.
  • buffer
    Tipo: System.Byte[]
    Buffer di destinazione in cui vengano copiati i dati.
  • bufferIndex
    Tipo: System.Int32
    Indice nel buffer di destinazione da cui ha inizio la copia.

Valore restituito

Tipo: System.Int64
Numero di byte copiati.

Implements

IDataRecord.GetBytes(Int32, Int64, Byte[], Int32, Int32)

Vedere anche

Riferimento

DbUpdatableDataRecord Classe

Spazio dei nomi System.Data.Entity.Core.Objects