Function: dbus-introspect-get-method

dbus-introspect-get-method is a byte-compiled function defined in dbus.el.gz.

Signature

(dbus-introspect-get-method BUS SERVICE PATH INTERFACE METHOD)

Documentation

Return method METHOD of interface INTERFACE as an XML object.

It must be located at SERVICE in D-Bus BUS at object path PATH. METHOD must be a string and a member of the list returned by dbus-introspect-get-method-names. The resulting "method" object can contain "arg" and "annotation" children.

Source Code

;; Defined in /usr/src/emacs/lisp/net/dbus.el.gz
(defun dbus-introspect-get-method (bus service path interface method)
  "Return method METHOD of interface INTERFACE as an XML object.
It must be located at SERVICE in D-Bus BUS at object path PATH.
METHOD must be a string and a member of the list returned by
`dbus-introspect-get-method-names'.  The resulting \"method\"
object can contain \"arg\" and \"annotation\" children."
  (dbus--introspect-name
   (dbus-introspect-get-interface bus service path interface)
   'method method))