XMLRPCFault Object
See Also Example Properties Methods Events
Models an XML-RPC Fault structure.
Class Diagram

Remarks
The XML-RPC Fault structure is defined as two values, faultCode and faultString. These are stored in this object as properties. This object is accessible via the Fault property of the XMLRPCResponse object.
Fault codes and strings can mean anything. There are no standard codes and descriptions. The differ from one service to another.
Background
The XML-RPC specification details the structure of the XML fragment which this object models as follows:
<fault>
<value>
<struct>
<member>
<name>faultCode</name>
<value><int>4</int></value>
</member>
<member>
<name>faultString</name>
<value><string>Too many parameters.</string></value>
</member>
</struct>
</value>
</fault>
|