vote up 1 vote down star

I have a scenario where I have to get an export from my CompositionContainer instance but I only have a Type to work with; I don't know the type at compile time, hence I can't retrieve the exported object in the normal generic way.

Normally you would do this:

_container.GetExportedObject<IMyType>();

But in my case, I have this:

Type someType = ... ;
_container.HowDoIGetTheExport(someType);

Any ideas?

flag

2 Answers

vote up 1 vote down check

Found the answer:

var export = _container.GetExports(someType, null, null).FirstOrDefault();
link|flag
Yes that is the core method that most of the generic overloads use, so that is the best way to get it. – Wes Haggard Jun 25 at 16:31
vote up 0 vote down

Create the call dynamically using Type.MakeGeneric.....

http://geekswithblogs.net/marcel/archive/2007/03/24/109722.aspx

link|flag
That doesn't help me call a generic method on the container... I don't think you read my question properly. – Nathan Ridley Jun 24 at 11:51
I see you have a specific answer - excellent. My answer is more general in the sense that from a Type you can construct a generic method call at run time. We use this to construct calls where only interfaces are know at compile time but running instances can be fed from external sources. – Preet Sangha Jun 24 at 12:20

Your Answer

Get an OpenID
or

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