在使用XmlSerializer進行XML序列化時,處理包含衍生自抽象類別的泛型清單的物件可能會遇到挑戰。嘗試反序列化此類物件可能會導致InvalidOperationException異常。
為了解決這個問題,您可以使用以下三種方法之一:
1. 在基底型上使用[XmlInclude]特性:
<code class="language-csharp">using System.Xml.Serialization; [XmlInclude(typeof(ChildA))] [XmlInclude(typeof(ChildB))] public abstract class ChildClass { public string ChildProp { get; set; } }</code>
2. 在屬性上使用[XmlElement]特性:
<code class="language-csharp">public class MyWrapper { [XmlElement("A", Type = typeof(ChildA))] [XmlElement("B", Type = typeof(ChildB))] public List<ChildClass> Data { get; set; } }</code>
3. 在屬性上使用[XmlArrayItem]特性:
<code class="language-csharp">public class MyWrapper { [XmlArrayItem("A", Type = typeof(ChildA))] [XmlArrayItem("B", Type = typeof(ChildB))] public List<ChildClass> Data { get; set; } }</code>
根據您的具體需求取消對應屬性對的註解。 透過使用這些方法之一,XmlSerializer將能夠在序列化和反序列化期間處理衍生類別。
以上是如何使用 XmlSerializer 序列化通用清單中的衍生類別?的詳細內容。更多資訊請關注PHP中文網其他相關文章!