XmlTextReader - 它是否锁定文件?
这可能是一件非常简单的事情,但我一直无法找到它,而且我可能只是在寻找错误的东西......
XmlTextReader --> 它会锁定您正在读取的文件吗? 我正在使用 reader.Read() ,仅此而已。
This is probably a really simple thing, but I haven't been able to find it, and I'm probably just searching for the wrong thing...
XmlTextReader --> Does it lock the file you're reading? I'm using reader.Read() and that's about it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您创建一个提供
字符串
的新XmlTextReader
时,它将使用写锁(而不是读锁)锁定文件; 但是,如果您为其提供Stream
,则它将取决于流本身。您现在可以在没有锁的情况下读取。
When you create a new
XmlTextReader
providing astring
, it will lock the file with a write lock (but not a read lock); however, if you provide it aStream
, it would depend on the stream itself.You can now read without having a lock.