summaryrefslogtreecommitdiffstats
path: root/mono/Message.cs
Commit message (Collapse)AuthorAgeFilesLines
* 2004-08-30 Jon Trowbridge <trow@ximian.com>Jon Trowbridge2004-08-311-0/+38
| | | | | | | | | | | | | | | | | | | * 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.
* Added signal support.Owen Fraser-Green2004-03-261-17/+24
|
* Added InterfaceProxy to Mono bindings to avoid having to generate a proxy ↵Owen Fraser-Green2004-03-231-0/+12
| | | | for every registered object. Also added object_path functions to dbus-message.
* First checkin of the Mono bindings.Owen Fraser-Green2004-03-231-95/+324
|
* 2003-06-24 Havoc Pennington <hp@pobox.com>Havoc Pennington2003-06-251-8/+8
| | | | * mono/*.cs: Use IntPtr.Zero instead of ((IntPtr) 0)
* 2003-06-22 Havoc Pennington <hp@pobox.com>Havoc Pennington2003-06-231-9/+11
| | | | | | | * mono/Connection.cs: add more bindings * dbus/dbus-threads.c (dbus_threads_init): allow calling this more than once.
* 2003-06-22 Havoc Pennington <hp@pobox.com>Havoc Pennington2003-06-221-9/+10
| | | | | * mono/Connection.cs, mono/DBus.cs, mono/Error.cs: Start wrapping more stuff.
* 2003-06-22 Havoc Pennington <hp@pobox.com>Havoc Pennington2003-06-221-5/+81
| | | | | | | | | | | * mono/Message.cs: implement Message.Wrap() that ensures we only have a single C# wrapper per DBusMessage, assuming it works which it probably doesn't. * dbus/dbus-message.c (dbus_message_allocate_data_slot): new (dbus_message_free_data_slot): new (dbus_message_set_data): new (dbus_message_get_data): new
* 2003-06-22 Havoc Pennington <hp@pobox.com>Havoc Pennington2003-06-221-0/+50
* mono/*, gcj/*, configure.in, Makefile.am: Check in makefiles and subdirs for mono and gcj bindings. Neither binding actually exists, just trying to get through all the build and other boring bits.