summaryrefslogtreecommitdiffstats
path: root/mono/Connection.cs
diff options
context:
space:
mode:
Diffstat (limited to 'mono/Connection.cs')
-rw-r--r--mono/Connection.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/mono/Connection.cs b/mono/Connection.cs
index acc6ef6d..2d98f646 100644
--- a/mono/Connection.cs
+++ b/mono/Connection.cs
@@ -76,11 +76,11 @@ namespace DBus
return new Connection(rawConnection);
}
- public string BaseService
+ public string UniqueName
{
get
{
- return Marshal.PtrToStringAnsi (dbus_bus_get_base_service (RawConnection));
+ return Marshal.PtrToStringAnsi (dbus_bus_get_unique_name (RawConnection));
}
}
@@ -192,6 +192,6 @@ namespace DBus
private extern static void dbus_connection_disconnect (IntPtr ptr);
[DllImport ("dbus-1")]
- private extern static IntPtr dbus_bus_get_base_service (IntPtr ptr);
+ private extern static IntPtr dbus_bus_get_unique_name (IntPtr ptr);
}
}