CryptographicBuffer.DecodeFromHexString(String) Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Decodifica uma cadeia de caracteres que foi codificada hexadecimal.
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
Parâmetros
- value
-
String
Platform::String
winrt::hstring
Cadeia de caracteres de entrada codificada.
Retornos
Buffer de saída que contém a cadeia de caracteres decodificada.
Exemplos
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);
}