XMLRPCResponse Object
See Also Example Properties Methods Events
The XMLRPCResponse object is used to hold the details of a response from the remote XML-RPC server.
Class Diagram

Remarks
The XMLRPCResponse object contains all the logic to process a response from the remote XML-RPC server.
It is best used as shown in the code fragment below.
When the request to the remote XML-RPC server has completed the XMLRPCResponse object will be populated with the information required for further analysis of the response.
First check the Status property for the status of the response and then act accordingly.
An example code fragment follows:
Dim X As New XMLRPCRequest
Dim Y As XMLRPCResponse
' ...
' ...
' Put code to set up the request to the remote XML-RPC server here
' ...
' ...
Set Y = X.Submit
' ...
' ...
' Put code to process the response from the remote XML-RPC server here
' ...
' ...
|