ItemElementName
设置为,ItemChoiceType.Bit16
因为这是枚举中的第一项。因此,它的值是0
,但您可以将其视为Bit16
。通过Activator,您可以创建一个新实例。如果您不输入参数来设置属性,那么它们的值将是默认值。
我看到你有 XmlChoiceIdentifier 和其他 XmlSerializer 的东西。该属性的目的是:
- 不要序列化
ItemElementName
属性。
ItemElementName
反序列化后根据 的序列化值恢复Item
。
这就是我可以根据给定的信息告诉你的...
下面是一个使用 XmlSerializer 和 XmlChoiceIdentifier 的示例:
public class Choices
{
[XmlChoiceIdentifier("ItemType")]
[XmlElement("Text", Type = typeof(string))]
[XmlElement("Integer", Type = typeof(int))]
[XmlElement("LongText", Type = typeof(string))]
public object Choice { get; set; }
[XmlIgnore]
public ItemChoiceType ItemType;
}
[XmlType(IncludeInSchema = false)]
public enum ItemChoiceType
{
Text,
Integer,
LongText
}
class Program
{
static void Main(string[] args)
{
Choices c1 = new Choices();
c1.Choice = "very long text"; // You can put here a value of String or Int32.
c1.ItemType = ItemChoiceType.LongText; // Set the value so that its type match the Choice type (Text or LongText due to type of value is string).
var serializer = new XmlSerializer(typeof(Choices));
using (var stream = new FileStream("Choices.xml", FileMode.Create))
serializer.Serialize(stream, c1);
// Produced xml file.
// Notice:
// 1. LongText as element name
// 2. Choice value inside the element
// 3. ItemType value is not stored
/*
<?xml version="1.0"?>
<Choices xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<LongText>very long text</LongText>
</Choices>
*/
Choices c2;
using (var stream = new FileStream("Choices.xml", FileMode.Open))
c2 = (Choices)serializer.Deserialize(stream);
// c2.ItemType is restored
}
}