Protocol::XMLRPC::Value::Base64 - XML-RPC array
my $base64 = Protocol::XMLRPC::Value::Base64->new('foo');
my $base64 = Protocol::XMLRPC::Value::Base64->parse("Zm9v\n");
Creates new Protocol::XMLRPC::Value::Base64 instance.
Parses base64 string and creates a new Protocol::XMLRPC:::Value::Base64
instance.
my $base64 = Protocol::XMLRPC::Value::Base64->new('foo');
# $base64->value returns 'Zm9v\n'
Returns serialized Perl5 scalar.
my $base64 = Protocol::XMLRPC::Value::Base64->new('foo');
# $base64->to_string is now
# '<base64>Zm9v
# </base64>'
XML-RPC base64 string representation.