AddInteger Method
See Also Example Applies To
Adds an XMLRPCMember object containing a name and a Long integer to the object.
Syntax
object.AddInteger (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. Long integer 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
X.AddInteger "Fred", 12345
|