Unity容器部署和XML Web服务
我正在容器中的非托管对象上注册一些包装器。在容器使用寿命结束时如何处理它们?请记住我有一个 XML Web 服务。
I am registering some wrapers over un-managed objects in container. How can I dispose of them at the end of the container's lifetime? Please bear in mind I have an XML Web service.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
大多数 DI 容器都具有处理已创建对象的功能。通常,Resolve 方法有一个相应的方法可以处理创建的对象图。
在Unity中,这个方法称为Teardown。
当您的 Web 请求完成后,您应该将对象图传递给 Teardown 方法以处理任何 IDisposable 对象。
Most DI Containers have a functionality to dispose of created objects. Typically, a Resolve method has a corresponding method that can dispose of the created object graph.
In Unity, this method is called Teardown.
When your web request is done, you should pass your object graph to the Teardown method to dispose of any IDisposable objects.
据我所知,您必须自己实现这一点。我相信 Autofac 是目前 开箱即用地支持此功能。
As far as I am aware you will have to implement this yourself. I believe Autofac is currently the only .NET container to support this out of the box.