binaryconcat-ext
Service icon

BinaryConcat_Ext

Stable version 1.0.0 (Compatible with OutSystems 11)
Uploaded
 on 09 December 2024
 by 
0.0
 (0 ratings)
binaryconcat-ext

BinaryConcat_Ext

Documentation
1.0.0

Follow these steps to use the module for merging binary chunks into a single binary data object:


Step 1: Add the Module to Your Application

  •     Include the module in your application by referencing it in your application.


Step 2: Prepare the Input Data

  •     Collect or generate the binary chunks you want to merge.
  •     Each chunk should be of the Binary Data type.
  •     Organize the chunks in a BinaryChunk List data structure


Step 3: Call the Concatenation Method

  •     Use the provided method (ConcatenateBinaryChunks) to merge the binary chunks.
  •     Pass the list of binary chunks created in step 2 as input to the method.
  •     The method will return a single Binary Data object containing the merged result.


Step 4: Handle the Output

  •     Use the result for your desired purpose, such as:
    •     Saving to a file.
    •     Processing further in your application.