AddStruct Method
See Also Example Applies To
Adds an XMLRPCMember object containing a name and an XMLRPCStruct to the object.
Syntax
object.AddStruct (name, value)
| Part |
Description |
| object |
An object expression that evaluates to an XMLRPCStruct object. |
| name |
Required. A string which is the name of the value to add. |
| value |
Required. XMLRPCStruct object to be appended to the XMLRPCStruct object. |
Remarks
An example of the code fragment needed is below:
Dim X as New XMLRPCStruct ' The Struct to be added to
Dim Y as New XMLRPCStruct ' The Struct to be added
Y.AddInteger "One", 1
Y.AddInteger "Two", 2
Y.AddInteger "Three", 3
X.Struct.AddStruct "Example", Y
|