close var XDocument.Load 方法/方式

发布于 2024-12-25 01:12:56 字数 136 浏览 0 评论 0原文

我如何关闭这个以这种方式调用的文档:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

夏日浅笑〃 2025-01-01 01:12:56

XmlTextReader 实现 IDisposable。一般来说,一旦不再需要资源,您就应该调用 IDisposable.Dispose() 以允许系统关闭打开的句柄等。

IDisposable 的最佳使用模式是使用 using 语法,它将在隐式 try..finally 包装器中自动调用 IDisposable.Dispose():

using (var reader = new XmlTextReader(Server.MapPath("Nc.xml")))
{
    var xdoc = XDocument.Load(reader);
    { .. do xdoc work here .. }
} // reader disposed here

或者如果您想将 xdoc 保留很长时间以进行其他工作,但希望尽快关闭该文件可能,做 这边走:

XDocument xdoc = null;
using (var reader = new XmlTextReader(Server.MapPath("Nc.xml")))
{
    xdoc = XDocument.Load(reader);
} // reader disposed here

{ .. do xdoc work here .. }

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 implicit try..finally wrapper:

using (var reader = new XmlTextReader(Server.MapPath("Nc.xml")))
{
    var xdoc = XDocument.Load(reader);
    { .. do xdoc work here .. }
} // reader disposed here

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:

XDocument xdoc = null;
using (var reader = new XmlTextReader(Server.MapPath("Nc.xml")))
{
    xdoc = XDocument.Load(reader);
} // reader disposed here

{ .. do xdoc work here .. }
淡莣 2025-01-01 01:12:56

阅读完成后,它会自动关闭已阅读的内容。

否则,将引用挂出以供 GC

xmlDoc = null;

删除任何内部未清项目。

Once the reader is done, it will close the what it has read automatically.

otherwise hang the reference out for GC by

xmlDoc = null;

which will tear down any internal open items.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文