XMLRPC client for ActionScript 2.0
http://xmlrpcflash.sf.net
|
xmlrpc@dopelogik.com
Parser Class
Class for parsing an XMLRPC response. The end-coder does not need to worry about directly accessing Parser.
Public Properties
None
Public Methods
Parse
(node:
XMLNode
):
Object
Unmarshalls given XML node into a Flash data type.
p = new XMLRPC.Parser(); a = p.Parse(xml_response);
Public Events
None
Example
p = new XMLRPC.Parser(); a = p.Parse(xml_response);
Back to Main Page