AddArray Method
See Also Example Applies To
Adds an XMLRPCMember object containing a name and an XMLRPCArray to the object.
Syntax
object.AddArray (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. The XMLRPCArray object to be appended to the XMLRPCStruct object. |
Remarks
An example of the code fragment needed is below:
Dim X as New XMLRPCArray ' The Array to be added
Dim Y as New XMLRPCStruct ' The struct to have the array added to it
X.AddString "Fred"
X.AddInteger 12345
Y.AddArray "Example", X
|