<< Click to Display Table of Contents >>

Base64decode

Decode Base64 string and create OZBinary object.

Prototype

void Base64decode(string Text)

Parameters

Text

Base64 encoded string

Example

var binary = OZCreator.getBuiltInObject("OZBinary");

//var binary = OZCreator.getBuiltInObject(OZBuiltInObject.BINARY);

binary.Base64decode("xde9usau");

var encodetext = binary.Base64encode();