Exemple #1
0
        public List <MethodInformation> GetServiceMethods()
        {
            List <MethodInformation> methods = new List <MethodInformation>();

            MethodInfo[] methodsInfo = serviceDeclarations.GetMethods(BindingFlags.Instance | BindingFlags.Public | BindingFlags.DeclaredOnly);

            foreach (System.Reflection.MethodInfo methodInfo in methodsInfo)
            {
                List <MethodParameter> inputParameters = new List <MethodParameter>();
                foreach (ParameterInfo paramInfo in methodInfo.GetParameters())
                {
                    inputParameters.Add(new MethodParameter(paramInfo.Name, paramInfo.ParameterType.ToString()));
                }

                MethodParameter outputParameter = new MethodParameter(methodInfo.ReturnParameter.Name, methodInfo.ReturnType.ToString());

                if (inputParameters.Count == 0)
                {
                    methods.Add(new MethodInformation(methodInfo.Name, /*inputParameters.ToArray(),*/ outputParameter));
                }
            }

            return(methods);
        }
 public MethodInformation(string name, /*MethodParameter[] inputParameters,*/ MethodParameter outputParameter)
 {
     this.name = name;
     //this.inputParameters = inputParameters;
     this.outputParameter = outputParameter;
 }