XMLRPC_ValueTypes Enumerated List
See Also Example Applies To
This enumerated list contains the different value types allowable in XML-RPC. For more information see the XML-RPC specification.
XMLRPC_ARRAY
Value 8 - XML-RPC Array structure. A complex type that contains a number of values. Expressed in the XML-RPC specification as a <array> tag.
XMLRPC_BASE64
Value 6 - Base64-encoded binary (aka MIME). Expressed in this implementation as a string. There are no functions in this release to support the generation of base64 coded strings from a passed file (coming soon). Expressed in the XML-RPC specification as a <base64> tag.
XMLRPC_BOOLEAN
Value 2 - Boolean. Analogous to the Visual Basic 'Boolean' type. Expressed in the XML-RPC specification as a <boolean> tag.
XMLRPC_DATETIME
Value 5 - DateTime. Analogous to the Visual Basic 'Date' type. Expressed in the XML-RPC specification as a <dateTime.iso8601> tag.
XMLRPC_DOUBLE
Value 4 - Double. Analogous to the Visual Basic 'Double' type. Expressed in the XML-RPC specification as a <double> tag.
XMLRPC_INT_I4
Value 1 - Four-byte signed integer. Analogous to the Visual Basic 'Long' type. Expressed in the XML-RPC specification as a <i4> or <int> tag.
XMLRPC_NIL
Value 9 - XML-RPC 2 Nil "value". Literally nothing. Expressed in the XML-RPC 2 specification as a <nil/> tag.
XMLRPC_STRING
Value 3 - String. Analogous to the Visual Basic 'String' type. Expressed in the XML-RPC specification as a <string> tag.
XMLRPC_STRUCT
Value 7 - XML-RPC Struct structure. A complex type that contains a number of values with identifying names. Expressed in the XML-RPC specification as a <struct> tag.
|