如何监控 XElement 的大小
我正在逐行创建一个 XML 文档,需要密切关注该文件的大小。生成的文件需要通过 MSMQ 发送,我认为 MSMQ 的消息大小限制为 4Mb。我需要做的是,当文档接近这个大小时,停止添加数据并将文档添加到列表中,然后开始使用剩余数据创建一个新文档。然后,我可以将此 XML 文档列表返回到调用函数,在该函数中可以通过 MSMQ 发送文档。我的问题是,持续监视 XElement 大小的好方法是什么?
I am creating an XML document line by line and need to keep an eye on how large this file is becoming. The resulting file will need to be sent via MSMQ which has a message size restriction of 4Mb I think. What I need to do is when the document is getting close to this size, is to stop adding data and to add the document to a list and start creating a new one with the remaining data. I can then return this list of XML documents to the calling function where the documents can be sent via MSMQ. My question is, what would be a good way of continuously monitoring the size of a XElement ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
XNode 有 ToString 方法,
您可以找到添加的每个元素的大小。
XNode have ToString method
You can found size of each element you add.