system.listMethods (public)

 system.listMethods

Defined in packages/xml-rpc/tcl/system-procs.tcl

Enumerate the methods implemented by the XML-RPC server. The system.listMethods method requires no parameters.

Returns:
an array of strings, each of which is the name of a method implemented by the server.
Author:
Vinod Kurup

Partial Call Graph (max 5 caller/called nodes):
%3 xmlrpc::list_methods xmlrpc::list_methods (public) system.listMethods system.listMethods system.listMethods->xmlrpc::list_methods

Testcases:
No testcase defined.
Source code:
    set result [list]
    foreach proc_name [xmlrpc::list_methods] {
        lappend result [list -string $proc_name]
    }

    return [list -array $result]
XQL Not present:
Generic, PostgreSQL, Oracle
[ hide source ] | [ make this the default ]
Show another procedure: