close var XDocument.Load 方法/方式
我如何关闭这个以这种方式调用的文档:
var xmlDoc = XDocument.Load(new XmlTextReader(Server.MapPath("Nc.xml")));
谢谢
how do I close this document that was called this way:
var xmlDoc = XDocument.Load(new XmlTextReader(Server.MapPath("Nc.xml")));
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
XmlTextReader 实现 IDisposable。一般来说,一旦不再需要资源,您就应该调用 IDisposable.Dispose() 以允许系统关闭打开的句柄等。
IDisposable 的最佳使用模式是使用
using
语法,它将在隐式try..finally
包装器中自动调用 IDisposable.Dispose():或者如果您想将 xdoc 保留很长时间以进行其他工作,但希望尽快关闭该文件可能,做 这边走:
XmlTextReader implements IDisposable. In general, you should call IDisposable.Dispose() as soon as you no longer need the resource to allow the system to close open handles, etc.
The best use pattern for IDisposable is to use the
using
syntax, which will call IDisposable.Dispose() automatically in an implicittry..finally
wrapper:or if you want to keep the xdoc around a long time for other work but want to close the file as soon as possible, do it this way:
阅读完成后,它会自动关闭已阅读的内容。
否则,将引用挂出以供 GC
删除任何内部未清项目。
Once the reader is done, it will close the what it has read automatically.
otherwise hang the reference out for GC by
which will tear down any internal open items.