CryptographicBuffer.CopyToByteArray(IBuffer, Byte[]) 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.
Copie une mémoire tampon dans un tableau d’octets.
static void CopyToByteArray(IBuffer const& buffer, [Out] winrt::array_view <byte> const& & value);
public static void CopyToByteArray(IBuffer buffer, out byte[] value);
Public Shared Sub CopyToByteArray (buffer As IBuffer, ByRef value As Byte())
Paramètres
- buffer
- IBuffer
Mémoire tampon d’entrée.
- value
-
Byte[]
byte[]
Tableau d’octets qui contient les valeurs copiées à partir de la mémoire tampon d’entrée. Vous devez déclarer le tableau avant d’appeler cette méthode et la transmettre à l’aide de la référence mot clé. Si la mémoire tampon du paramètre d’entrée est vide, le paramètre value est retourné sous la forme NULL.
Exemples
public void ByteArrayCopy()
{
// Initialize a byte array.
byte[] arrByte = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
// Create a buffer from the byte array.
IBuffer buffer = CryptographicBuffer.CreateFromByteArray(arrByte);
// Encode the buffer into a hexadecimal string (for display);
String strHex = CryptographicBuffer.EncodeToHexString(buffer);
// Copy the buffer back into a new byte array.
byte[] arrByteNew;
CryptographicBuffer.CopyToByteArray(buffer, out arrByteNew);
}