GetXMLRPCType Method
See Also Example Applies To
Returns a string with a text description of the XML-RPC Type.
Syntax
object.GetXMLRPCType (XMLRPCType)
| Part |
Description |
| object |
An object expression that evaluates to an XMLRPCUtility object. |
| ErrorNumber |
Required. A long integer (type Long) which should be a member of the enumerated list XMLRPC Value Types. |
Settings
See the XMLRPC_ValueTypes enumerated list.
Remarks
If the passed integer is not equivalent to one of the XMLRPC Value Types then the code "Unknown" is returned.
An example of the code fragment needed is below:
Dim X as New XMLRPCUtility ' The Utility object
Print X.GetXMLRPCType(XMLRPC_BASE64)
|