summaryrefslogtreecommitdiffstats
path: root/mono/BusDriver.cs
Commit message (Collapse)AuthorAgeFilesLines
* 2004-09-28 Jon Trowbridge <trow@ximian.com>Jon Trowbridge2004-09-291-6/+4
| | | | | | | | | | | | | * mono/BusDriver.cs: Changed BusDriver struct to remove the ServiceCreated and ServiceDeleted events and replace them with the new ServiceOwnerChanged event. * mono/example/BusListener.cs: Added a new example program, which listens for and reports any ServiceOwnerChanged events on the bus driver. * mono/example/Makefile.am (DESTDIR): Build changes for the new BusListener.cs example.
* 2004-08-30 Jon Trowbridge <trow@ximian.com>Jon Trowbridge2004-08-311-0/+39
* mono/BusDriver.cs: Added. This is a class for interacting with the org.freedesktop.DBus service. * mono/Message.cs: Added a mechanism to expose the message that is currently being dispatched via the static Message.Current property. Added Message.Sender and Message.Destination properties. * mono/Handler.cs: Expose the dispatched message via Message.Current when handling method calls. * mono/Service.cs: Expose the dispatched message via Message.Current when handling signal emissions. * mono/Connection.cs: Bind dbus_bus_get_base_service via the Connection.BaseService property.