1

有没有办法使用 XmlSerializer 将包含简单文本或子元素的元素反序列化为字符串?

Xml 样本:

<Attribute>
    <AttributeValue xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="xs:string">thisistext</AttributeValue>
    <AttributeValue>
        <e:Authorities xmlns:e="urn:dummy">
            <e:Authority>ORG_CHIEF</esia-encoder:Authority>
        </e:Authorities>
    </AttributeValue>
</Attribute>

C# 属性:

[XmlElement("AttributeValue", IsNullable = true)]
public string[] AttributeValue { get; set; }

第一个 AttributeValue 的反序列化成功,但下一个失败。难怪,因为 ReadElementString 方法需要简单或空的内容。我正在寻找一种方法来告诉序列化程序“将此元素的内容放入字符串,无论它包含什么”。

4

2 回答 2

1

实际上,您在 XML 中的第二个值是:

 <e:Authorities xmlns:e="urn:dummy">
     <e:Authority>ORG_CHIEF</esia-encoder:Authority>
 </e:Authorities>

string这不是预期的有效数据类型,因为:

public string[] AttributeValue {get; set;}
于 2013-01-16T09:04:17.780 回答
0

如果您能够在 XSD 中定义它,您可以使用XSD2Code或 xsd.exe 为 XSD 创建一个类以进行反序列化。

这个如何?

<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified">
    <xs:element name="Attribute">
        <xs:complexType>
            <xs:sequence>
                <xs:element name="AttributeValue" maxOccurs="unbounded">
                    <xs:complexType>
                        <xs:choice>
                            <xs:element name="AuthoritiesString" type="xs:string"/>
                            <xs:element name="AuthoritiesElement">
                                <xs:complexType>
                                    <xs:sequence>
                                        <xs:element name="Authority"/>
                                    </xs:sequence>
                                </xs:complexType>
                            </xs:element>
                        </xs:choice>
                    </xs:complexType>
                </xs:element>
            </xs:sequence>
        </xs:complexType>
    </xs:element>
</xs:schema>
于 2013-01-16T09:08:00.480 回答