访问 mef 中的子组合容器
给定一个包含嵌套组合容器的组合容器,如何访问嵌套容器?
Given a composition container that holds a nested composition container, how do I access the nested container?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
默认情况下,您无法直接访问传递给容器的嵌套容器。但是,您可以查看 Providers 属性,该属性将列出给定 CompositionContainer(CompositionContainer 只是一个特殊的 ExportProvider)当前正在使用的所有 ExportProvider,并查找 CompositionContainer。
By default you cannot directly access the nested containers you passed to a container. However you could look at the Providers property which will list all the ExportProviders that are currently being used by a given CompositionContainer (CompositionContainer is just a special ExportProvider) and find the ones that are CompositionContainers.