AddArray Method
See Also Example Applies To
Adds an XMLRPCValue object containing an XMLRPCArray to the object.
Syntax
object.AddArray (value)
Remarks
An example of the code fragment needed is below:
Dim X as New XMLRPCArray ' The Array to be added
Dim Y as New XMLRPCRequest ' The request to be have params added to it
X.AddString "Fred"
X.AddInteger 12345
Y.Params.AddArray X
|