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
ReadBytes(Int32, Byte[], Int32) |
Lit les octets à partir de la position actuelle et les écrit dans la mémoire tampon spécifiée, en commençant à l’offset spécifié. |
ReadBytes(Int32) |
Lit les octets à partir de la position actuelle. |
ReadBytes(Int32, Byte[], Int32)
- Source:
- BlobReader.cs
- Source:
- BlobReader.cs
- Source:
- BlobReader.cs
Lit les octets à partir de la position actuelle et les écrit dans la mémoire tampon spécifiée, en commençant à l’offset 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 où le lecteur d’octets sera écrit.
- bufferOffset
- Int32
L’offset dans la mémoire tampon de destination où le lecteur d’octets sera écrit.
Exceptions
byteCount
octet(s) indisponible(s).
S’applique à
ReadBytes(Int32)
- Source:
- BlobReader.cs
- Source:
- BlobReader.cs
- Source:
- BlobReader.cs
Lit les octets à partir de 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
octet(s) indisponible(s).