zoukankan      html  css  js  c++  java
  • Reprint: Serialization

    Having just recently ran into some major serialization issues I’m going to list some of the errors and pitfalls that I ran into.

    Some of the errors encountered

    Error one
    “<ClassName> is inaccessible due to its protection level. Only public types can be processed.”

    It means that the Class you are trying to serialize is not marked as public and hence the serializor can not access it. Depending on the Class scope this may not be a problem e.g. the serialization code and the class are both in the same scope.

    Error Two
    “Cannot serialize member <Property Name> of type <Type> because it is an interface.”

    It means that one of the members in your class is defined as an interface. An interface can never be serialized since the serializor will not know which instance of the interface to use.

    Error Three
    The type <Type> was not expected. Use the XmlInclude or SoapInclude attribute to specify types that are not known statically.

    This error is caused when trying to serialize an inherited class

    E.g. the following example will cause this problem

    1. public class Test  
    2. {  
    3.   private string _Field = "";  
    4.   public string Field  
    5.   {  
    6.     get { return _Field; }  
    7.     set { _Field = value; }  
    8.   }  
    9. }  
    10.   
    11. public class TestInherited : Test  
    12. {  
    13. }  
    14.   
    15. public class Container  
    16. {  
    17.   private Test ivField;  
    18.   public Test Field  
    19.   {  
    20.     get { return _Field; }  
    21.     set { _Field = value; }  
    22.   }  
    23. }  
    24.   
    25. Container _Test = new Container();  
    26. _Test.Field = new TestInherited();  

    The issue is that the Container.Field is defined as Test but instantiated as TestInherited. Their are two solutions for this problem
    1) Add the attribute [XmlInclude(typeof(TestInherited))] to the Test class
    2) new XmlSerializer(typeof(Container), new Type[] { typeof(TestInherited) });

    The second method is preferred. With the first method you have to decorate your base classes to which you may not always have access to, secondly the base class should not be aware of any class that inherits from it.

    Note:特别的,当一个对象中的属性为基类或者object类型时,他的依赖注入的类型(即运行时类型)必须明确使用 XmlInclude属性标明序列化的类型,否则序列化会出错。

    转载自 http://www.johnsoer.com/blog/?p=125

  • 相关阅读:
    数据库外连接和内连接详解
    关于省市联动问题的分析
    邮箱验证修改密码,通过邮箱找回密码
    格式化Json传递的日期
    项目中验证码的使用
    水仙花数
    回文数
    冒泡排序
    《终结者·洛谷小说》总集
    题解 CF151A 【Soft Drinking】
  • 原文地址:https://www.cnblogs.com/anthonyBlog/p/4346319.html
Copyright © 2011-2022 走看看