Base64 Decode
Description
Base64 decodes data from one stream to another.
Assembly: iCore.Workflow.Activities
Category: Streams
Arguments
| Name | Type | Description |
|---|---|---|
| Source | Stream | The stream to read the data from. Data is read from the current position in the stream. The stream is closed after activity finishes. |
| Close source stream | Boolean | Indicates whether the source stream will be closed when the activity is complete, or if it will be left open. |
| Destination | Stream | The stream to write the data to. Data is written to the current position in the stream. The stream is closed after activity finishes. |
| Close destination stream | Boolean | Indicates whether the destination stream will be closed when the activity is complete, or if it will be left open. |
| BytesRead | Integer | Number of bytes read from the source stream. |
| BytesWritten | Integer | Number of bytes written to the destination stream. |