BlobReader.ReadBytes 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.
Surcharges
| Nom | Description |
|---|---|
| ReadBytes(Int32, Byte[], Int32) |
Lit les octets en commençant à la position actuelle et les écrit dans la mémoire tampon spécifiée à partir du décalage spécifié. |
| ReadBytes(Int32) |
Lit les octets en commençant à la position actuelle. |
ReadBytes(Int32, Byte[], Int32)
- Source:
- BlobReader.cs
- Source:
- BlobReader.cs
- Source:
- BlobReader.cs
- Source:
- BlobReader.cs
- Source:
- BlobReader.cs
- Source:
- BlobReader.cs
- Source:
- BlobReader.cs
Lit les octets en commençant à la position actuelle et les écrit dans la mémoire tampon spécifiée à partir du décalage spécifié.
public:
void ReadBytes(int byteCount, cli::array <System::Byte> ^ buffer, int bufferOffset);
public void ReadBytes(int byteCount, byte[] buffer, int bufferOffset);
member this.ReadBytes : int * byte[] * int -> unit
Public Sub ReadBytes (byteCount As Integer, buffer As Byte(), bufferOffset As Integer)
Paramètres
- byteCount
- Int32
Nombre d’octets à lire.
- buffer
- Byte[]
La mémoire tampon de destination dans laquelle les octets lus sont écrits.
- bufferOffset
- Int32
Décalage dans la mémoire tampon de destination où les octets lus seront écrits.
Exceptions
byteCount Octets non disponibles.
S’applique à
ReadBytes(Int32)
- Source:
- BlobReader.cs
- Source:
- BlobReader.cs
- Source:
- BlobReader.cs
- Source:
- BlobReader.cs
- Source:
- BlobReader.cs
- Source:
- BlobReader.cs
- Source:
- BlobReader.cs
Lit les octets en commençant à la position actuelle.
public:
cli::array <System::Byte> ^ ReadBytes(int byteCount);
public byte[] ReadBytes(int byteCount);
member this.ReadBytes : int -> byte[]
Public Function ReadBytes (byteCount As Integer) As Byte()
Paramètres
- byteCount
- Int32
Nombre d’octets à lire.
Retours
Tableau d’octets.
Exceptions
byteCount Octets non disponibles.