CryptographicBuffer.DecodeFromHexString(String) Metode
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Mendekode string yang telah dikodekan heksadesimal.
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
Parameter
- value
-
String
Platform::String
winrt::hstring
String input yang dikodekan.
Mengembalikan
Buffer output yang berisi string yang didekodekan.
Contoh
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);
}