Decodes the specified Base64 string back into binary data. A Base64 string is produced by encoding binary data using Base64 encoding.
Base64 encoding is one of the commonly used binary-to-text encoding. You would encode your byte into a string when you need to include binary data as part of a text transmission, for example in a JSON string.
For more information about Base64 encoding, see this Wikipedia article.
Input Arguments
|
Output Arguments
|
Return Value
None
Examples
Define_Com Class(#XPRIM_Binary) Name(#HashBytes)
. . .
#HashBytes.FromBase64String String( #JsonObject.GetString('hash') )