列出 WindsorContainer/Kernel 中的所有 IRegistrations
如何获取 WindsorContainer 或其内核中所有 IRegistrations/ComponentRegistrations 的列表?我可以通过连接到 ComponentRegistered 事件并跟踪那里来找到一种方法,但是有更简单的方法吗?
谢谢。
How do I get a list of all IRegistrations/ComponentRegistrations in my WindsorContainer or its kernel? I can see a way of doing this by wiring to the ComponentRegistered event and tracking there, but is there an eaiser way?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以从容器中获取处理程序,但不能获取 IRegistrations:
处理程序基本上是已注册的组件。 IHandler.ComponentModel 包含已注册组件的大部分信息。
You can get the handlers from the container, but not the IRegistrations:
Handlers are basically the registered components. IHandler.ComponentModel contains most of the information of a registered component.