从仅给定 Type 实例的 MEF 容器中获取导出
我有一个场景,我必须从 CompositionContainer 实例导出,但我只有一个类型可以使用; 我不知道编译时的类型,因此无法以正常的通用方式检索导出的对象。
通常你会这样做:
_container.GetExportedObject<IMyType>();
但就我而言,我有这样的:
Type someType = ... ;
_container.HowDoIGetTheExport(someType);
有什么想法吗?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
找到了答案:
Found the answer:
使用 Type.MakeGeneric 动态创建调用.....
http://geekswithblogs.net/marcel/archive/2007/03/24/109722.aspx
Create the call dynamically using Type.MakeGeneric.....
http://geekswithblogs.net/marcel/archive/2007/03/24/109722.aspx