From 632d54e0dbf5e405258be7afffbaa48942c06cbc Mon Sep 17 00:00:00 2001 From: Owen Fraser-Green Date: Tue, 23 Mar 2004 18:07:48 +0000 Subject: Added InterfaceProxy to Mono bindings to avoid having to generate a proxy for every registered object. Also added object_path functions to dbus-message. --- mono/Arguments.cs | 16 ---------------- 1 file changed, 16 deletions(-) (limited to 'mono/Arguments.cs') 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) { -- cgit