CryptographicBuffer.DecodeFromHexString(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Decodes a string that has been hexadecimal encoded.
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
Parameters
- value
-
String
Platform::String
winrt::hstring
Encoded input string.
Returns
Output buffer that contains the decoded string.
Examples
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);
}