基于XmlChoiceIdentifier创建对象

时间:2013-05-26 16:22:18

标签: c# reflection xml-serialization activator

我使用Activator(C#)动态创建对象,其中一个类看起来像:

class Driver
{
   Driver() { }

   [XmlChoiceIdentifier("ItemElementName")]
   [XmlElement("Bit16", typeof(DriverModule))]
   [XmlElement("Bit32", typeof(DriverModule))]
   [XmlElement("Bit64", typeof(DriverModule))]
   [XmlElement("Unified", typeof(DriverUnified))]
   public object Item { get; set; }
   [XmlIgnore]
   public ItemChoiceType ItemElementName { get; set; }

   // ... other serialization methods
}

当我使用Activator创建Driver类的实例时,我得到以下对象:

obj.Item = null;
obj.ItemElementName = "Bit16"

ItemElementName默认是设置的,因为它的枚举,但是如果基于这个枚举设置Item怎么设置? 再一次,我用Activator动态创建了很多对象,所以我不能对它进行硬编码 - 可以在类中获取这些信息并正确创建Item属性吗?

非常感谢!

1 个答案:

答案 0 :(得分:1)

ItemElementName设置为ItemChoiceType.Bit16,因为这是枚举中的第一项。因此,它的值为0,但您可以将其视为Bit16。通过Activator,您可以创建一个新实例。如果您没有设置参数来设置属性,那么它们的值将是默认值。

我看到你有XmlChoiceIdentifier和其他XmlSerializer的东西。此属性的目的是:

  1. 请勿序列化ItemElementName属性。
  2. 根据ItemElementName的序列化值在反序列化后恢复Item
  3. 根据给定的信息,我可以告诉你......

    以下是一个使用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
        }
    }