security.HexBinary.LoadBinary

Reads binary data from a file and converts it to hexadecimal.

Syntax

security.HexBinary.LoadBinary(
   path STRING )
  RETURNING result STRING
  1. path is the path to the binary file.
  2. result is the string in hexadecimal format.

Usage

Reads the file located at path and returns these binary data in hexadecimal format.

For example, this method can be used to send images through a network.

Throws an exception in case of errors, and updates STATUS with an error code.