This repository has been archived by the owner on Nov 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 59
interface extending Properties could call Properties methods in 0.7, but not 0.8 #34
Comments
arfbtwn
added a commit
to arfbtwn/dbus-sharp
that referenced
this issue
Aug 20, 2014
Issue mono#34 reports that only the main interface is presented, so that if e.g. a programmer wishes to add the properties interface to a type, then the resulting implementation attempts to call the method on the incorrect interface. This is due to a premature optimisation, which this patch removes.
arfbtwn
added a commit
to arfbtwn/dbus-sharp
that referenced
this issue
Nov 16, 2014
Issue mono#34 reports that only the main interface is presented, so that if e.g. a programmer wishes to add the properties interface to a type, then the resulting implementation attempts to call the method on the incorrect interface. This is due to a premature optimisation, which this patch removes.
arfbtwn
added a commit
to arfbtwn/dbus-sharp
that referenced
this issue
Feb 15, 2015
Issue mono#34 reports that only the main interface is presented, so that if e.g. a programmer wishes to add the properties interface to a type, then the resulting implementation attempts to call the method on the incorrect interface. This is due to a premature optimisation, which this patch removes.
arfbtwn
added a commit
to arfbtwn/dbus-sharp
that referenced
this issue
Feb 22, 2015
Issue mono#34 reports that only the main interface is presented, so that if e.g. a programmer wishes to add the properties interface to a type, then the resulting implementation attempts to call the method on the incorrect interface. This is due to a premature optimisation, which this patch removes.
steffen-kiess
added a commit
to steffen-kiess/dbus-sharp
that referenced
this issue
Jun 15, 2018
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
If I have this code:
and compile it against dbus-sharp 0.7 on Debian 7, I can do this to get an
org.freedesktop.DBus.Properties.GetAll
call:Under 0.8 or git master, this tries to call
org.freedesktop.hostname1.GetAll
which doesn't exist. (Or am I meant to do a separate GetObject call for the Properties interface to achieve that?)The text was updated successfully, but these errors were encountered: