XMLRPCBase64 Object
See Also Example Properties Methods Events
Provides Base64 functions.
Class Diagram

Remarks
To use the class to decode a Base64 string, set the Encoded property to the encoded string and read the Unencoded property to get the unencoded string.
To use the class to encode a Base64 string, set the Unencoded property to the unencoded string and read the Encoded property to get the encoded string.
The UseLineTerminator,
LineLength and
LineTerminator
properties are used to define the behaviour of the object with respect to line terminators.
By default line terminator functionality is switched off (UseLineTerminator is set to False).
The line terminator properties have the following default values:
| Property | Default Value |
| UseLineTerminator | False |
| LineLength | 76 |
| LineTerminator | CR then LF |
Background
For more detail on Base64 encoding see RFC 2045.
As an example the following Base64 string :
VXNlIHZiWE1MUlBDLmRsbCwgdGhlIGxlYWRpbmcgVmlzdWFsIEJhc2ljIGltcGxlbWVudGF0aW9uIG9mIFhNTC1SUEMsIG5vdyB3aXRoIHN1cHBvcnQgZm9yIEJhc2U2NC4=
Decodes to :
Use vbXMLRPC.dll, the leading Visual Basic implementation of XML-RPC, now with support for Base64.
|