' [序列化]
public class ABC
{
public ABC()
{
this.AttributeList = new List<DEF>();
}
[XmlAttribute]
public string EntityName { get; set; }
[XmlAttribute]
public bool IsManual { get; set; }
public List<DEF> AttributeList { get; set; }
}`
我需要在反序列化过程中跳过一些xml属性。 但它们应该在序列化时可用。
我希望序列化包括AttributeList在内的所有属性。但是在反序列化期间,必须忽略AttributeList。可能吗? (我不能使用[XMLIgnore]。)