我有一个以下XML:
<person xmlns:a="http://example.com" xmlns:b="http://sample.net"> <a:fName>John</a:fName> <a:lName>Wayne</a:lName> <b:age>37</b:age> </person>
您需要使用
XmlElement属性的命名空间来指定每个字段需要的命名空间。这将允许您将字段与特定的命名空间相关联,但是您还需要公开一个返回类型
XmlNamespaceDeclarations的类的属性,以获取前缀关联。
原文链接:https://www.f2er.com/xml/293542.html请参阅下面的文档和示例:
[XmlRoot(ElementName="person")] public class Person { [XmlElement(Namespace="http://example.com")] public string fname; [XmlElement(Namespace="http://sample.com")] public string lname; [XmlNamespaceDeclarations] public XmlSerializerNamespaces xmlns = new XmlSerializerNamespaces(); public Person() { xmlns.Add("a","http://example.com"); xmlns.Add("b","http://sample.com"); } }