0

我知道这看起来不像是最佳实践,但我需要生成具有相同命名空间的 xml

例如:

<ns1:root xsi:schemaLocation=""http://schemalocation""
xmlns:ns1=""http://schema""
xmlns:xsi=""http://www.w3.org/2001/XMLSchema-instance""
xmlns=""http://schema"">
...
</ns1:root>

我还向序列化程序添加了命名空间:

var xmlSerializerNamespaces = new XmlSerializerNamespaces();
xmlSerializerNamespaces.Add("ns1", "http://schema");
xmlSerializerNamespaces.Add("xsi", "http://www.w3.org/2001/XMLSchema-instance");
xmlSerializerNamespaces.Add(string.Empty, "http://schema");

这是类本身:

[XmlRoot(ElementName = "request", Namespace = "http://schema")]
    [Serializable]
    public class Request 
    {
        [XmlAttributeAttribute("schemaLocation", Namespace = XmlSchema.InstanceNamespace)]
        public string SchemaLocation
        {
            get { return _schemaLocation; }
            set { _schemaLocation = value; }
        }

        ...

        private string _schemaLocation = "http://schemalocation";   }

所以一切都很好,但默认 xmlns 不在生成的 xml 中。我也玩过 XmlWriterSettings 没有结果。有没有人知道如何在不替换字符串的情况下做到这一点?)

4

1 回答 1

0

默认命名空间是根据您用来添加 XML 片段的命名空间来设置的,例如

XNamespace defaultNs = @"http://schema";
var result = new XDocument(new XElement(defaultNs + "root"));

将产生以下输出:

<rootNode xmlns="http://schema">
</rootNode>

因此,您所要做的就是将其他命名的添加到文档中,即

XNamespace defaultNs = @"http://schema";
var root = new XElement(defaultNs + "root",
    new XAttribute("xsi", "schemaLocation", "http://schemaLocation"),
    new XAttribute(XNamespace.Xmlns + "ns1", defaultNs"),
    new XAttribute(XNamespace.Xmlns + "xsi", "http://www.w3.org/2001/XMLSchema-instance")
);
于 2012-10-15T12:58:03.490 回答