GetProperty calls org.freedesktop.DBus.Properties.Get on the given object. The property name must be given in interface.member notation.
(p string)
| 128 | // GetProperty calls org.freedesktop.DBus.Properties.Get on the given |
| 129 | // object. The property name must be given in interface.member notation. |
| 130 | func (o *Object) GetProperty(p string) (Variant, error) { |
| 131 | var result Variant |
| 132 | err := o.StoreProperty(p, &result) |
| 133 | return result, err |
| 134 | } |
| 135 | |
| 136 | // StoreProperty calls org.freedesktop.DBus.Properties.Get on the given |
| 137 | // object. The property name must be given in interface.member notation. |
nothing calls this directly
no test coverage detected