| Protocol-XMLRPC documentation | Contained in the Protocol-XMLRPC distribution. |
Protocol::XMLRPC::Value::Boolean - XML-RPC array
my $true = Protocol::XMLRPC::Value::Boolean->new(1);
my $true = Protocol::XMLRPC::Value::Boolean->new('true');
my $false = Protocol::XMLRPC::Value::Boolean->new(0);
my $false = Protocol::XMLRPC::Value::Boolean->new('false');
XML-RPC boolean
newCreates new Protocol::XMLRPC::Value::Boolean instance.
typeReturns 'boolean'.
value my $boolean = Protocol::XMLRPC::Value::Boolean->new(1);
# $boolean->value returns 1
my $boolean = Protocol::XMLRPC::Value::Boolean->new('false');
# $boolean->value returns 'false'
Returns serialized Perl5 boolean.
to_string my $boolean = Protocol::XMLRPC::Value::Boolean->new(1);
# $boolean->to_string is now '<boolean>1</boolean>'
XML-RPC boolean string representation.
Viacheslav Tykhanovskyi, vti@cpan.org.
Copyright (C) 2009, Viacheslav Tykhanovskyi.
This program is free software, you can redistribute it and/or modify it under the same terms as Perl 5.10.
| Protocol-XMLRPC documentation | Contained in the Protocol-XMLRPC distribution. |
package Protocol::XMLRPC::Value::Boolean; use strict; use warnings; use base 'Protocol::XMLRPC::Value'; sub type {'boolean'} sub to_string { my $self = shift; my $value = $self->value; return "<boolean>$value</boolean>"; } 1; __END__