Function: dbus-introspect-get-method-names

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

Signature

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

Documentation

Return a list of strings of all method names of INTERFACE.

SERVICE is a service of D-Bus BUS at object path PATH.

Source Code

;; Defined in /usr/src/emacs/lisp/net/dbus.el.gz
(defun dbus-introspect-get-method-names (bus service path interface)
  "Return a list of strings of all method names of INTERFACE.
SERVICE is a service of D-Bus BUS at object path PATH."
  (dbus--introspect-names
   (dbus-introspect-get-interface bus service path interface) 'method))