summaryrefslogtreecommitdiffstats
path: root/mono/Arguments.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/Arguments.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/Arguments.cs')
-rw-r--r--mono/Arguments.cs16
1 files changed, 0 insertions, 16 deletions
diff --git a/mono/Arguments.cs b/mono/Arguments.cs
index ac88d6a7..0df205c3 100644
--- a/mono/Arguments.cs
+++ b/mono/Arguments.cs
@@ -170,22 +170,6 @@ namespace DBus
return constructor;
}
- // Get the signature of a method
- public static string ParseParameters(MethodInfo method)
- {
- ParameterInfo[] pars = method.GetParameters();
- string key = "";
-
- foreach (ParameterInfo par in pars) {
- if (!par.IsOut) {
- Type dbusType = MatchType(par.ParameterType);
- key += GetCode(dbusType);
- }
- }
-
- return key;
- }
-
// Get the type code for a given D-BUS type
public static char GetCode(Type dbusType)
{