Codage de données (HTML)
[ Cet article est destiné aux développeurs de Windows 8.x et Windows Phone 8.x qui créent des applications Windows Runtime. Si vous développez une application pour Windows 10, voir la Documentation ]
L’exemple suivant montre comment utiliser encodeToBase64String pour coder une mémoire tampon dans une chaîne base64.
function EncodeData( encryptedDataBuffer )
{
try {
// Encode a data buffer to a base64 string.
var base64String = Windows.Security.Cryptography.CryptographicBuffer.encodeToBase64String(encryptedDataBuffer);
}
catch ( ) {
// Handle the error.
}
}