Function: secrets-get-item-property

secrets-get-item-property is a byte-compiled function defined in secrets.el.gz.

Signature

(secrets-get-item-property ITEM-PATH PROPERTY)

Documentation

Return property PROPERTY of item identified by ITEM-PATH.

Source Code

;; Defined in /usr/src/emacs/lisp/net/secrets.el.gz
(defun secrets-get-item-property (item-path property)
  "Return property PROPERTY of item identified by ITEM-PATH."
  (unless (or (secrets-empty-path item-path) (not (stringp property)))
    (dbus-get-property
     :session secrets-service item-path
     secrets-interface-item property)))