BinaryEncode()

Returns the binary object encoded as a string using the encoding method given

Usage

STRING = BinaryEncode( data, encoding )
Argument Summary
data binary data to encode
encoding encoding format ('hex', 'uu' or 'base64')

Calling

Supports named-parameter calling allowing you to use the function like:

BinaryEncode(
   data=?, 
   encoding=?
);

Supports passing parameters as a structure using ArgumentCollection:

BinaryEncode( ArgumentCollection={
   data : ?, 
   encoding : ?
} );