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

Remarks
The XML-RPC Params structure is defined as having a number of values of any type.
An XMLRPCParams object is not creatable and is either a property of a XMLRPCRequest or XMLRPCResponse object.
Any access to an XMLRPCParams object should be made via one of these two objects.
For example to add an integer XMLRPCValue to a XMLRPCParams object requires the following fragment:
Dim X As New XMLRPCRequest
X.Params.AddInteger 1
Once an XMLRPCParams object is referenced,
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:
<params>
<param>
<value><boolean>0</boolean></value>
</param>
</params>
|