How to remove namespace prefix. (C#)

走远了吗. 提交于 2019-12-18 09:03:20

问题


I have an XElement, resulting from a transform that looks like the following.

<src:Person xmlns:src="http://www.palantir.za">
  <src:Name>Jenifer Harvey</src:Name>
  <src:BirthDate>1969-11-13</src:BirthDate>
  <src:IdentityNumber>6906678550017</src:IdentityNumber>
  <src:Sex>Male</src:Sex>
</src:Person> 

I would like to transform this XElement into a new XElement that has 'src' as a default namespace rather than a 'named' namespace as above.

I realise they are probably semantically identical, I just want to maintain consistency in what is being stored.

I want the following.

<Person xmlns="http://www.palantir.za">
        <Name>Jenifer Harvey</Name>
        <BirthDate>1969-11-13</BirthDate>
        <IdentityNumber>6906678550017</IdentityNumber>
        <Sex>Male</Sex>
</Person> 

Thanks

Regards

Craig.


回答1:


Simply remove the xmlns:src attribute and add a new xmlns attribute:

XDocument xdoc = XDocument.Parse(
        "<src:Person xmlns:src=\"http://www.palantir.za\">" +
        "  <src:Name>Jenifer Harvey</src:Name>" +
        "  <src:BirthDate>1969-11-13</src:BirthDate>" +
        "  <src:IdentityNumber>6906678550017</src:IdentityNumber>" +
        "  <src:Sex>Male</src:Sex>" +
        "</src:Person>");

xdoc.Root.Add(new XAttribute("xmlns", "http://www.palantir.za"));
xdoc.Root.Attributes(XNamespace.Xmlns + "scr").Remove();


来源:https://stackoverflow.com/questions/3052030/how-to-remove-namespace-prefix-c

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!