Given the following code,

    public T Execute<T>(Func<T> methodParam)
    {
        return methodParam ();
    }

    public void CallMethodsAnonymously<T>()
    {
        T result =  Execute(() => _service.SomeMethod1());
        T result1 = Execute(() => _service.SomeMethod2(someParm1));
        T result2 = Execute(() => _service.SomeMethod3( someParm1, someParm2));
    }

From the Execute method, is it possible to inspect “methodParam” and extract or determine the number of parameters within the anonymous function body? For example is it possible to determine the values of someParam1 and someParam2 from within the Execute method?

link|improve this question

"determine the number of parameters within the anonymous function body?" The Func<T> body or the method it's pointing to? – jberger Oct 11 '11 at 3:37
@jberger - Func<T> methodParam points to an anonymous function with no parameters. the body of that anonymous function is what i'm interested in since it has the actual method calls with parameters. – mike01010 Oct 11 '11 at 3:46
feedback

3 Answers

up vote 5 down vote accepted

You can do it using the Expression API:

public static T Execute<T>(Expression<Func<T>> methodParam)
{
    var methodCallExpression = methodParam.Body as MethodCallExpression;
    var method = methodCallExpression.Method;
    var parameters = method.GetParameters();

    return methodParam.Compile()();
}

The parameters variable will be an array of ParameterInfo objects which will contain the information you need. Finally, the Compile method actually converts the Expression to an executable delegate. The C# compiler also allows you to call this method with the regular conventions of calling methods that take delegates, with the standard lambdas/anonymous methods.

EDIT:

I also just noticed that you wanted a way to get the actual value of the someParam1 and someParam2. Here's how you can do that:

private static object GetValue(Expression expression)
{
    var constantExpression = expression as ConstantExpression;
    if (constantExpression != null)
    {
        return constantExpression.Value;
    }

    var objectMember = Expression.Convert(expression, typeof(object));
    var getterLambda = Expression.Lambda<Func<object>>(objectMember);
    var getter = getterLambda.Compile();
    return getter();
}


private static object[] GetParameterValues(LambdaExpression expression)
{
    var methodCallExpression = expression.Body as MethodCallExpression;
    if (methodCallExpression != null)
    {
        return methodCallExpression.Arguments.Select(GetValue).ToArray();
    }

    return null;
}

So now in your execute method, if you do this:

public static T Execute<T>(Expression<Func<T>> methodParam)
{
    var methodCallExpression = methodParam.Body as MethodCallExpression;
    var method = methodCallExpression.Method;
    var parameters = method.GetParameters();

    var values = GetParameterValues(methodParam);
    return methodParam.Compile()();
}

then the values will be an object[] with all the actual values that were passed in.

link|improve this answer
1  
MethodCallExpression will be inside a LambdaExpression in the example – Eranga Oct 11 '11 at 3:36
@Eranga Huh? Not sure I follow.... – BFree Oct 11 '11 at 3:38
Can this same technique be used to dynamically add parameters to a method? i.e. instead of having to define: func<T, TRESULT> func<T, T2, TRESULT> func<T, T2,...Tn, TRESULT> it would great if can define a Func/delegate using Expression and add the parameters dynamically. Is this possible? – mike01010 Oct 11 '11 at 3:38
@Bfree This works great! thanks. One additional question. i would like to set the parameter value as well. How would i go about doing this? Im not seeing an sort of setters on the object returned by using the Expression api. – mike01010 Oct 11 '11 at 19:07
feedback

There are no params in any of the methodParam calls.
The code: () => _service.SomeMethod1() basically "points" to another function which returns T.
() => _service.SomeMethod1() is equivalent to:
() => { return _service.SomeMethod1(); }

Edit to actually answer the question (silly me):
Try:

T result2 =
   Execute(() =>
   {
      [BreakPoint]return _service.SomeMethod3(someParm1, someParm2)
   }
);
link|improve this answer
Wrap it in Expression<>, invoke .Compile(), and you'll get an expression tree.. – jberger Oct 11 '11 at 3:49
feedback

It's unlikely. The Execute method is passed a delegate--in this case a reference to an anonymous function. What you're asking is for the Execute method to look inside the code for that function and determine what it's doing.

That's akin to me trying to peek inside the Random.Next method at runtime to see what methods it calls.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.