From a929c9a3b465db8b7e17b9b39936c612c2621a7c Mon Sep 17 00:00:00 2001 From: "John (J5) Palmieri" Date: Fri, 14 Jul 2006 16:20:12 +0000 Subject: * Remove all bindings --- mono/BusDriver.cs | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 mono/BusDriver.cs (limited to 'mono/BusDriver.cs') diff --git a/mono/BusDriver.cs b/mono/BusDriver.cs deleted file mode 100644 index 4e9b7afa..00000000 --- a/mono/BusDriver.cs +++ /dev/null @@ -1,37 +0,0 @@ -namespace DBus -{ - - using System; - - public delegate void NameOwnerChangedHandler (string name, - string oldOwner, - string newOwner); - - [Interface ("org.freedesktop.DBus")] - public abstract class BusDriver - { - [Method] - public abstract string[] ListNames (); - - [Method] - public abstract string GetNameOwner (string name); - - [Method] - public abstract UInt32 GetConnectionUnixUser (string connectionName); - - - [Signal] - public virtual event NameOwnerChangedHandler NameOwnerChanged; - - static public BusDriver New (Connection connection) - { - Service service; - service = Service.Get (connection, "org.freedesktop.DBus"); - - BusDriver driver; - driver = (BusDriver) service.GetObject (typeof (BusDriver), "/org/freedesktop/DBus"); - - return driver; - } - } -} -- cgit