CFLBase64StringToTempBlob Procedure
Decodes a Base64 encoded BigText and stores the result in a Temp Blob. Handles large Base64 strings that exceed the Text data type limit.
Overloads
| Name | Description |
|---|---|
| CFLBase64StringToTempBlob(Bigtext; codeunit "Temp Blob") | Decodes a Base64 encoded BigText and stores the result in a Temp Blob. |
| CFLBase64StringToTempBlob(text; codeunit "Temp Blob") | Decodes a Base64 encoded string and stores the result in a Temp Blob. |
CFLBase64StringToTempBlob(Bigtext; codeunit "Temp Blob") Procedure
Decodes a Base64 encoded BigText and stores the result in a Temp Blob. Handles large Base64 strings that exceed the Text data type limit.
Signature
CFLBase64StringToTempBlob(Base64String: Bigtext; var tempBlob: codeunit "Temp Blob")
Parameters
Base64String Bigtext
The Base64 encoded BigText to decode.
var tempBlob codeunit "Temp Blob"
The Temp Blob to store the decoded data in.
CFLBase64StringToTempBlob(text; codeunit "Temp Blob") Procedure
Decodes a Base64 encoded string and stores the result in a Temp Blob.
Signature
CFLBase64StringToTempBlob(Base64String: text; var tempBlob: codeunit "Temp Blob")
Parameters
Base64String text
The Base64 encoded string to decode.
var tempBlob codeunit "Temp Blob"
The Temp Blob to store the decoded data in.