gpt4 book ai didi

c# - 添加到 xmlnode 的未命名命名空间

转载 作者:行者123 更新时间:2023-12-04 17:04:31 26 4
gpt4 key购买 nike

我想向我的根 xmlnode 添加一个未命名的命名空间。我该怎么做呢?

错误信息 - -

元素或属性的本地名称不能为 null 或空字符串。

        System.Xml.XmlDocument xmlDoc = new System.Xml.XmlDocument();

XmlNode ShipmentReceiptNotification0Node = xmlDoc.CreateElement("ShipmentReceiptNotification", "", "namespacename");

ShipmentReceiptNotification0Node.InnerText = String.Empty;
xmlDoc.AppendChild(ShipmentReceiptNotification0Node);

最佳答案

CreateElement 使用其他 2 个参数覆盖.

var node = xmlDoc.CreateElement("ShipmentReceiptNotification", "namespacename");

关于c# - 添加到 xmlnode 的未命名命名空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15283974/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com