Windsor OnCreated 为所有组件
我将如何全局拦截容器对所有实例的创建/解析?我知道我可以在每个组件的基础上使用 OnCreated 单独执行此操作,但我想对容器解析的所有对象全局执行此操作。
谢谢。
How would I go about globally intercepting the creation/resolution of all instances by my container? I know I can do this individually with OnCreated on a per-component basis, but I want to do this globally for all objects resolved by the container.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试订阅
IKernel.ComponentCreated
事件。Try subscribing to
IKernel.ComponentCreated
event.