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

Remarks
The XML-RPC Struct structure is defined as having a number of values of any type. An XMLRPCStruct object can be created the same way other objects are created. For example:
Dim X As New XMLRPCStruct
Once an XMLRPCStruct 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, GetValueByName or MemberExists methods,
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:
<struct>
<member>
<name><string>State Code</string></name>
<value><string>MA</string></value>
</member>
<member>
<name><string>State Full Name</string></name>
<value><string>Massachusetts</string></value>
</member>
</struct>
|