summaryrefslogtreecommitdiffstats
path: root/mono/BusDriver.cs
diff options
context:
space:
mode:
Diffstat (limited to 'mono/BusDriver.cs')
-rw-r--r--mono/BusDriver.cs10
1 files changed, 4 insertions, 6 deletions
diff --git a/mono/BusDriver.cs b/mono/BusDriver.cs
index 8b1fc680..426dd370 100644
--- a/mono/BusDriver.cs
+++ b/mono/BusDriver.cs
@@ -3,7 +3,9 @@ namespace DBus
using System;
- public delegate void ServiceEventHandler (string serviceName);
+ public delegate void ServiceEventHandler (string serviceName,
+ string oldOwner,
+ string newOwner);
[Interface ("org.freedesktop.DBus")]
public abstract class BusDriver
@@ -19,11 +21,7 @@ namespace DBus
[Signal]
- public virtual event ServiceEventHandler ServiceCreated;
-
- [Signal]
- public virtual event ServiceEventHandler ServiceDeleted;
-
+ public virtual event ServiceEventHandler ServiceOwnerChanged;
static public BusDriver New (Connection connection)
{