Open chmorgan opened 10 years ago
I must be missing something, how would I emit a signal from dbus-sharp? I looked through the examples but don't see anything that looks analogous.
And I'll answer my own question:
public class Blah : MarshalByRefObject { public event MyEventHandler OnEvent; public void EventHandler() { if(OnEvent != null) { OnEvent(); } } }
I must be missing something, how would I emit a signal from dbus-sharp? I looked through the examples but don't see anything that looks analogous.