6

嗨,我目前在解析没有任何命名空间的 Xml 字符串时遇到问题,并将其添加到具有命名空间的现有 XElement 中。

我的代码:

XElement elem = root.Element(xs + "methodCall");
if (elem != null)
{
    XElement e = XElement.Parse(this.MethodCallXML);

    elem.Add(e);
}

结果:

<methodCall>
  <methodCall service="activity" method="activityDeleteComment" xmlns="">
    <espSessionState>espSessionState1</espSessionState>
    <traceFlowCode>true</traceFlowCode>
    <params>
      <commentID>http://uri1</commentID>
      <isPermanentDelete>false</isPermanentDelete>
    </params>
  </methodCall>
</methodCall>

我的问题是 xmlns="" 我无法弄清楚如何使用 parse 方法创建节点并为其提供默认名称空间以供使用。

有没有办法做到这一点?

4

1 回答 1

11

好的,我想出了如何将命名空间添加到新的 XElement 和所有后代

foreach (XElement ce in e.DescendantsAndSelf())
     ce.Name = xs + ce.Name.LocalName;

到目前为止,这解决了我的问题,但如果有人能看到潜在的缺陷或更简单的方法,请告诉我。

于 2012-06-20T14:15:53.460 回答