如何监控 XElement 的大小

发布于 2024-09-06 23:20:19 字数 205 浏览 5 评论 0原文

我正在逐行创建一个 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 技术交流群。

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

发布评论

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

评论(1

耳钉梦 2024-09-13 23:20:19

XNode 有 ToString 方法,

XElement xmlTree = new XElement("Root",
    new XElement("Child1", 1)
);
Console.WriteLine(xmlTree);

您可以找到添加的每个元素的大小。

XNode have ToString method

XElement xmlTree = new XElement("Root",
    new XElement("Child1", 1)
);
Console.WriteLine(xmlTree);

You can found size of each element you add.

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