本文介绍了在XmlWriter中添加多个名称空间声明的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试使用XmlWriter写出以下元素

I am trying to write out the following element using XmlWriter

<kml xmlns="http://www.opengis.net/kml/2.2" xmlns:gx="http://www.google.com/kml/ext/2.2" xmlns:kml="http://www.opengis.net/kml/2.2" xmlns:atom="http://www.w3.org/2005/Atom">

我已经使用

writer.WriteStartElement("kml", "http://www.opengis.net/kml/2.2");

如何将其余3个声明添加到同一元素?

How can I add the remaining 3 declarations to the same element?

推荐答案

writer.WriteAttributeString("xmlns","gx", null, "http://www.google.com/kml/ext/2.2");
writer.WriteAttributeString("xmlns","kml", null, "http://www.opengis.net/kml/2.2");
writer.WriteAttributeString("xmlns","atom", null, "http://www.w3.org/2005/Atom");

https://msdn那里得到了. microsoft.com/en-us/library/cfche0ka(v=vs.100).aspx .

这篇关于在XmlWriter中添加多个名称空间声明的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-12 16:30