For the complete documentation index, see llms.txt. This page is also available as Markdown.

ObjectDeserialize

Loads an object serialized in a binary form from a file or as binary input

Method Signature

ObjectDeserialize(input=[any])

Arguments

Argument
Type
Required
Description
Default

input

any

true

The binary representation of the object to load, or the file path to load the object from.

Examples

Deserialize a BoxLang object from binary

data = { name: "test", value: 42 };
serialized = objectSerialize( data );
restored = objectDeserialize( serialized );
writeOutput( restored.name );

Result: test

Last updated

Was this helpful?