AddInteger Method
See Also Example Applies To
Adds an XMLRPCValue object containing a Long integer to the object.
Syntax
object.AddInteger (value)
| Part |
Description |
| object |
An object expression that evaluates to an XMLRPCParams object. |
| value |
Required. Long integer to be appended to the XMLRPCParams object. |
Remarks
An example of the code fragment needed is below:
Dim X as New XMLRPCRequest ' The request to be have params added to it
X.Params.AddInteger 12345
|