我知道这看起来不像是最佳实践,但我需要生成具有相同命名空间的 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 没有结果。有没有人知道如何在不替换字符串的情况下做到这一点?)