CryptographicBuffer.DecodeFromHexString(String) 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.
Décode une chaîne qui a été codée hexadécimale.
public:
static IBuffer ^ DecodeFromHexString(Platform::String ^ value);
static IBuffer DecodeFromHexString(winrt::hstring const& value);
public static IBuffer DecodeFromHexString(string value);
function decodeFromHexString(value)
Public Shared Function DecodeFromHexString (value As String) As IBuffer
Paramètres
- value
-
String
Platform::String
winrt::hstring
Chaîne d’entrée encodée.
Retours
Mémoire tampon de sortie qui contient la chaîne décodée.
Exemples
public void EncodeDecodeHex()
{
// Define a hexadecimal string.
String strHex = "30310AFF";
// Decode a hexadecimal string to binary.
IBuffer buffer = CryptographicBuffer.DecodeFromHexString(strHex);
// Encode the buffer back into a hexadecimal string.
String strHexNew = CryptographicBuffer.EncodeToHexString(buffer);
}