summaryrefslogtreecommitdiffstats
path: root/mono
diff options
context:
space:
mode:
Diffstat (limited to 'mono')
-rw-r--r--mono/DBusType/Array.cs3
-rw-r--r--mono/DBusType/Dict.cs3
2 files changed, 5 insertions, 1 deletions
diff --git a/mono/DBusType/Array.cs b/mono/DBusType/Array.cs
index bf41763c..dd93a5cc 100644
--- a/mono/DBusType/Array.cs
+++ b/mono/DBusType/Array.cs
@@ -106,6 +106,9 @@ namespace DBus.DBusType
public object Get(System.Type type)
{
+ if (type.IsArray)
+ type = type.GetElementType ();
+
if (Arguments.Suits(elementType, type.UnderlyingSystemType)) {
this.val = System.Array.CreateInstance(type.UnderlyingSystemType, elements.Count);
int i = 0;
diff --git a/mono/DBusType/Dict.cs b/mono/DBusType/Dict.cs
index f5c76b4c..660cac57 100644
--- a/mono/DBusType/Dict.cs
+++ b/mono/DBusType/Dict.cs
@@ -41,8 +41,9 @@ namespace DBus.DBusType
// Get the argument type and get the value
Type elementType = (Type) DBus.Arguments.DBusTypes[(char) dbus_message_iter_get_arg_type(dictIter)];
- object [] pars = new Object[1];
+ object [] pars = new Object[2];
pars[0] = dictIter;
+ pars[1] = service;
DBusType.IDBusType dbusType = (DBusType.IDBusType) Activator.CreateInstance(elementType, pars);
this.val.Add(key, dbusType);
} while (dbus_message_iter_next(dictIter));