| Protocol-XMLRPC documentation | view source | Contained in the Protocol-XMLRPC distribution. |
Protocol::XMLRPC::Value::Integer - XML-RPC array
my $integer = Protocol::XMLRPC::Value::Integer->new(123);
XML-RPC integer
aliasXML-RPC integer can be represented as 'int' and 'i4'. This parameter is 'i4' by default, but you can change it to 'int'.
newCreates new Protocol::XMLRPC::Value::Integer instance.
typeReturns 'integer'.
value my $integer = Protocol::XMLRPC::Value::Integer->new(1);
# $integer->value returns 1
Returns serialized Perl5 scalar.
to_string my $integer = Protocol::XMLRPC::Value::Integer->new(1);
# $integer->to_string is now '<i4>1</i4>'
my $integer = Protocol::XMLRPC::Value::Integer->new(1, alias => 'int');
# $integer->to_string is now '<int>1</int>'
XML-RPC integer 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 | view source | Contained in the Protocol-XMLRPC distribution. |