I'm starting to work with dynamic objects in .Net and I can't figure out how to do something.

I have a class that inherits from DynamicObject, and I override the TryInvokeMember method.

e.g.

class MyCustomDynamicClass : DynamicObject
{
    public override bool TryInvokeMember(InvokeMemberBinder binder, object[] args, out object result)
    {
        // I want to know here the type of the generic argument
    }
}

And inside that method I want to know the type (if any) of the generic arguments in the invocation.

e.g. If I invoke the following code, I want to get the value of System.Boolean and System.Int32 inside the overrided method of my dynamic object

dynamic myObject = new MyCustomDynamicClass();
myObject.SomeMethod<bool>("arg");
myObject.SomeOtherMethod<int>("arg");

Currently if I place a breakpoint inside the overrided method I can get the name of the method being invoked ("SomeMethod" and "SomeOtherMethod", and also the values of the arguments, but not the generic types).

How can I get these values?

Thanks!

link|improve this question

69% accept rate
Most likely you need to look up the method using reflection. MethodInfo provides access to the generic type arguments. – Morten Mertner Mar 30 '11 at 21:10
The problem is that the method doesn't exist, I just have access to the binder object, which has a CallInfo property, which doesn't have any generics information. – willvv Mar 30 '11 at 21:26
You know, I've been trying samples of this for a while now, and I can't find where the generic information is either. This is actually a really good question. – Tejs Mar 30 '11 at 21:35
feedback

2 Answers

up vote 4 down vote accepted

Actually I looked through the hierarchy of the binder and found a property with the needed values in the internal fields of the object.

The problem is that the property isn't exposed because it uses C#-specific code/classes, therefore the properties must be accessed using Reflection.

I found the code in this japanese blog: http://neue.cc/category/programming (I don't read any japanese, therefore I'm not sure if the author actually describes this same issue

Here's the snippet:

var csharpBinder = binder.GetType().GetInterface("Microsoft.CSharp.RuntimeBinder.ICSharpInvokeOrInvokeMemberBinder");
var typeArgs = (csharpBinder.GetProperty("TypeArguments").GetValue(binder, null) as IList<Type>);

typeArgs is a list containing the types of the generic arguments used when invoking the method.

Hope this helps someone else.

link|improve this answer
Good job :) Not pretty, but does the job! – Morten Mertner Mar 30 '11 at 22:48
Actually I found a catch in this code. it only works with the full version of the framework, and I need to use it in Silverlight, therefore I'm still missing a real answer :( – willvv Mar 31 '11 at 0:30
feedback

The open source framework ImpromptuInterface can call properties that internal/protected/private using the DLR and thus works with Silverlight. But it get's a little tricky with interface explicit members as you have to use the actual full name of the member on the the type, rather than the interface member name. So you can do:

var typeArgs = Impromptu.InvokeGet(binder, "Microsoft.CSharp.RuntimeBinder.ICSharpInvokeOrInvokeMemberBinder.TypeArguments")
     as IList<Type>;

Runs faster than reflection too.

link|improve this answer
This is awesome! – the_ajp Sep 6 '11 at 10:32
Hi this doesn't work because binder isn't of type ICSharpInvokeOrInvokeMemberBinder but if you change TypeArguments to m_typeArguments it does work. – the_ajp Sep 6 '11 at 11:22
Ugh, you are right, although m_typeArguments works, it is returning a different type than that property version, so I removed the interface duck casting example. – jbtule Sep 7 '11 at 14:06
feedback

Your Answer

 
or
required, but never shown

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