Params Property
See Also Example Applies To
Read-Only. An XMLRPCParams object containing the parameters to pass in the remote method call.
Syntax
object.Params
The object placeholder represents an XMLRPCRequest object.
Remarks
This property is read-only. The only way to add parameters to the request is in the following manner:
Dim X as New XMLRPCRequest ' The request to be have params added to it
X.Params.AddBoolean True
X.Params.AddString "Fred"
X.Params.AddInteger 23
|