summaryrefslogtreecommitdiffstats
path: root/mono/Message.cs
diff options
context:
space:
mode:
authorOwen Fraser-Green <owen@discobabe.net>2004-03-23 18:07:48 +0000
committerOwen Fraser-Green <owen@discobabe.net>2004-03-23 18:07:48 +0000
commit632d54e0dbf5e405258be7afffbaa48942c06cbc (patch)
tree0b3495f8a0753d427078a90e585dc53a2287200d /mono/Message.cs
parent0a673a8cd751d9eae14f3f5d0eeebf749b07bf09 (diff)
Added InterfaceProxy to Mono bindings to avoid having to generate a proxy for every registered object. Also added object_path functions to dbus-message.
Diffstat (limited to 'mono/Message.cs')
-rw-r--r--mono/Message.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/mono/Message.cs b/mono/Message.cs
index 2f5270dd..a1ff220c 100644
--- a/mono/Message.cs
+++ b/mono/Message.cs
@@ -35,6 +35,7 @@ namespace DBus
protected string pathName = null;
protected string interfaceName = null;
protected string name = null;
+ private string key= null;
protected Message()
{
@@ -263,6 +264,17 @@ namespace DBus
}
}
+ public string Key
+ {
+ get {
+ if (this.key == null) {
+ this.key = Name + " " + Arguments;
+ }
+
+ return this.key;
+ }
+ }
+
public Arguments Arguments
{
get