XMLRPCArray Object
See Also Example Properties Methods Events
Models an XML-RPC Array structure.
Class Diagram

Remarks
The XML-RPC array structure is defined as having a number of values of any type. An XMLRPCArray object can be created the same way other objects are created. For example:
Dim X As New XMLRPCArray
Once an XMLRPCArray object is created, members can be added using one of the nine Add... methods. Specific members can be returned from the collection using the Item method, while the entire collection can be iterated using the For Each...Next statement.
Background
The XML-RPC specification details the structure of the XML fragment which this object models as follows:
<array>
<data>
<value><i4>12</i4></value>
<value><string>Egypt</string></value>
<value><boolean>0</boolean></value>
<value><i4>-31</i4></value>
</data>
</array>
|